/* ===== Hvezdne Stropy — design tokens ===== */
:root {
  --night: #050816;
  --night-2: #080e1c;
  --night-3: #0b1428;
  --night-4: #101a30;
  --ink: #020510;
  --cream: #F5F0E6;
  --cream-muted: #bdb9af;
  --cream-dim: rgba(245, 240, 230, 0.65);
  --cream-faint: rgba(245, 240, 230, 0.35);
  --line: rgba(245, 240, 230, 0.10);
  --line-strong: rgba(245, 240, 230, 0.18);

  --gold: #D4AF37;
  --gold-light: #E8C864;
  --gold-dark: #A8831F;
  --glow: oklch(0.86 0.16 158);   /* fosforový akcent — jen glow efekty */
  --glow-blue: oklch(0.82 0.12 220);

  --radius-card: 22px;
  --radius-big: 32px;

  --font-sans: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Manrope', ui-sans-serif, system-ui, sans-serif;

  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
html, body { margin: 0; padding: 0; max-width: 100vw; }
body {
  font-family: var(--font-sans);
  background: var(--night);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ===== Type ===== */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-wrap: balance;
}
.kicker {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.serif-label {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-size: 12px;
}
h1,h2,h3,h4 { margin: 0; }

/* ===== Layout helpers ===== */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 120px 0; position: relative; }
.section-sm { padding: 80px 0; }

@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .section { padding: 80px 0; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #0a0a0a;
  box-shadow: 0 10px 30px -10px rgba(212, 175, 55, .55);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(245,240,230,0.06);
  color: var(--cream);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(245,240,230,0.12); }
.btn-dark {
  background: #0a0a0a;
  color: var(--cream);
  border-color: var(--line-strong);
}
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ===== Cards / surfaces ===== */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

/* ===== Utility ===== */
.muted { color: var(--cream-dim); }
.faint { color: var(--cream-faint); }
.gold  { color: var(--gold); }
.eyebrow-row {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ===== Stars (decorative) ===== */
.star {
  position: absolute;
  width: 2px; height: 2px;
  background: #fff;
  border-radius: 50%;
  opacity: .6;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--d, 0s);
  box-shadow: 0 0 6px rgba(255,255,255,.6);
}
.star.lg { width: 3px; height: 3px; }
.star.glow { box-shadow: 0 0 10px var(--glow); background: var(--glow); }
@keyframes twinkle {
  0%,100% { opacity: .15; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ===== Shooting star ===== */
.shooter {
  position: absolute;
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  opacity: 0;
  animation: shoot 9s ease-in infinite;
}
@keyframes shoot {
  0% { opacity: 0; transform: translate(0,0) rotate(-20deg); }
  3% { opacity: .9; }
  10% { opacity: 0; transform: translate(300px, 100px) rotate(-20deg); }
  100% { opacity: 0; }
}

/* ===== Reveal on scroll ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].in { opacity: 1; transform: none; }

/* ===== Before / After slider ===== */
.ba-wrap { position: relative; overflow: hidden; border-radius: var(--radius-big); }
.ba-img {
  width: 100%; height: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  object-fit: cover;
  object-position: center center;
}
.ba-before               { object-position: center 78%; }
.ba-after-wrap .ba-img   { object-position: center 32%; }
.ba-after-wrap {
  position: absolute; inset: 0;
  clip-path: inset(0 0 0 var(--cut, 50%));
  transition: clip-path .08s linear;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--cut, 50%);
  width: 2px;
  background: var(--cream);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 24px rgba(245,240,230,.4);
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.6), 0 0 0 6px rgba(245,240,230,.15);
  pointer-events: none;
}
.ba-tag {
  position: absolute;
  top: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,.5);
  border: 1px solid var(--line);
}
.ba-tag.left { left: 20px; color: var(--cream); }
.ba-tag.right { right: 20px; color: var(--glow); border-color: rgba(120, 240, 200, .3); }

/* ===== Gallery card (day/night reveal) ===== */
.gcard {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--night-3);
  border: 1px solid var(--line);
  break-inside: avoid;
  margin-bottom: 16px;
  cursor: pointer;
  transition: transform .3s ease, border-color .3s ease;
}
.gcard:hover { border-color: rgba(212, 175, 55, 0.3); }
.gcard img { width: 100%; height: auto; display: block; transition: transform .6s ease; }
.gcard:hover img { transform: scale(1.03); }
.gcard .gtag {
  position: absolute; bottom: 14px; left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  color: var(--cream);
  font-weight: 600;
}

/* ===== Masonry ===== */
.masonry {
  column-count: 3;
  column-gap: 16px;
}
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 1; } }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(5, 8, 22, 0.72);
  border-bottom: 1px solid var(--line);
}

/* ===== Form ===== */
.field {
  width: 100%;
  background: rgba(0,0,0,.28);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 16px 20px;
  border-radius: 16px;
  outline: none;
  font: inherit;
  transition: border-color .2s ease;
}
.field:focus { border-color: rgba(212, 175, 55, .5); }
.field::placeholder { color: var(--cream-faint); }

/* ===== Tabs ===== */
.tab {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream-dim);
  border: 1px solid var(--line);
  background: transparent;
  transition: all .2s ease;
}
.tab:hover { color: var(--cream); }
.tab.active {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* ===== Decorative background gradients ===== */
.bg-aurora {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(212, 175, 55, 0.10), transparent 60%),
    radial-gradient(60% 60% at 85% 40%, rgba(120, 200, 240, 0.06), transparent 60%),
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

/* Subtle scrolling noise for depth — implemented as repeating radial */
.dotfield {
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 38px 38px;
}

/* Package ring */
.pkg {
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}
.pkg:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.pkg.featured {
  border: 1px solid rgba(212,175,55, .45);
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(212,175,55,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
}
.pkg .price {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 10px;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}

/* Selection */
::selection { background: var(--gold); color: var(--ink); }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* =================================================================
   Blade-specific layout classes (replaces inline JSX styles)
   ================================================================= */

/* ===== Generic section helpers ===== */
.section-h2   { font-size: clamp(34px, 4.5vw, 58px); margin-top: 14px; }
.section-lead { margin-top: 20px; font-size: 17px; line-height: 1.7; max-width: 640px; }
.section-intro                 { max-width: 760px; }
.section-intro-center          { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-intro-center .section-lead { margin-left: auto; margin-right: auto; }
.section-intro-left            { max-width: 720px; }

/* ===== Header ===== */
.nav-row   { display: flex; align-items: center; justify-content: space-between; padding: 18px 28px; }
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand-img {
    height: 42px;
    width: auto;
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, .15));
}
.nav-brand-tagline {
    border-left: 1px solid var(--line-strong);
    padding-left: 14px;
    max-width: 160px;
    line-height: 1.4;
}
.nav-sub   { font-size: 10px; letter-spacing: 0.18em; color: var(--cream-faint); text-transform: uppercase; }
.desktop-nav { display: flex; gap: 32px; align-items: center; }
.nav-link    { font-size: 14px; color: var(--cream-dim); transition: color .2s; }
.nav-link:hover { color: var(--cream); }
.nav-ctas    { display: flex; gap: 10px; align-items: center; }
.nav-ctas .btn-sm { padding: 10px 16px; }
@media (max-width: 1024px) {
    .desktop-nav { display: none !important; }
}
@media (max-width: 720px) {
    .nav-row             { padding: 14px 20px; gap: 12px; flex-wrap: wrap; }
    .nav-brand-tagline   { display: none; }
    .nav-brand-img       { height: 36px; }
    .nav-ctas a:first-child { display: none; }
}

/* Footer brand */
.foot-brand      { display: inline-block; }
.foot-brand-img  {
    height: 64px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, .18));
}

/* ===== Hero ===== */
.hero {
    position: relative; overflow: hidden;
    padding: 90px 0 110px;
    min-height: 88vh;
    display: flex; align-items: center;
}
@media (max-width: 760px) {
    #top {
        padding: 53px 0 20px;
        min-height: 50vh;
    }
}
.hero-wrap       { position: relative; z-index: 3; }
.hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 35%;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}
.hero-video-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(5,8,22,.55) 0%, rgba(5,8,22,.65) 60%, rgba(5,8,22,.85) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero .stars-layer,
.hero .shooter,
.hero .dotfield { z-index: 2; }
.hero-grid       { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.hero-content    { text-align: left; }
.hero-title      { font-size: clamp(42px, 6vw, 84px); margin-top: 22px; line-height: 1.06; }
.hero-lead       { margin-top: 24px; font-size: 18px; line-height: 1.7; max-width: 560px; }
.hero-ctas       { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats      { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hero-stat       { padding-top: 20px; border-top: 1px solid var(--line); }
.hero-stat-value { font-family: var(--font-display); font-size: 28px; color: var(--gold); }
.hero-stat-label { font-size: 13px; margin-top: 6px; }
.eyebrow-dot     {
    display: inline-block; width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--glow);
    box-shadow: 0 0 10px var(--glow);
}
.hero .dotfield {
    position: absolute; inset: 0; opacity: .22; pointer-events: none;
}
.hero-preview       { position: relative; display: none; }
.hero-preview-glow  {
    position: absolute; inset: -30px;
    background: radial-gradient(60% 60% at 50% 50%, rgba(212,175,55,.14), transparent 70%);
    filter: blur(40px); z-index: 0;
}
.hero-preview-card {
    position: relative;
    border-radius: 32px; padding: 10px;
    border: 1px solid var(--line-strong);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    visibility: hidden;
}
.hero-preview-hint {
    display: flex; align-items: center; gap: 10px;
    margin-top: 14px; padding: 2px 6px;
}
.hero-preview-hint-icon {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, #1a2240, #0b1428);
    display: grid; place-items: center;
    border: 1px solid rgba(212,175,55,.3);
    flex-shrink: 0;
}
.hero-preview-hint-title { font-size: 12px; font-weight: 600; }
.hero-preview-hint-sub   { font-size: 11px; }
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-content { max-width: 100%; }
}

/* ===== What it is + For whom ===== */
.section-whatitis { background: var(--night-2); position: relative; }
.what-grid  { margin-top: 72px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.what-card  { padding: 32px; }
.what-card-head  { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.what-card-num   {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(212,175,55,.12);
    border: 1px solid rgba(212,175,55,.25);
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-size: 13px; color: var(--gold);
}
.what-card-title { font-size: 20px; font-weight: 700; }
.what-card-desc  { font-size: 15px; line-height: 1.7; }

.forwhom-block { margin-top: 120px; }
.forwhom-head  { display: flex; align-items: flex-end; justify-content: space-between;
                 margin-bottom: 36px; flex-wrap: wrap; gap: 20px; }
.forwhom-h3    { font-size: clamp(28px, 3.5vw, 42px); margin-top: 12px; }
.forwhom-lead  { font-size: 15px; max-width: 420px; }

.whom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.whom-card {
    position: relative; border-radius: 20px; overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 3/4;
}
.whom-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
}
.whom-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(5,8,22,.65) 60%, rgba(5,8,22,.96) 100%);
}
.whom-body  { position: absolute; left: 20px; right: 20px; bottom: 20px; }
.whom-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.whom-desc  { font-size: 13px; color: var(--cream-dim); line-height: 1.5; }

@media (max-width: 960px) {
    .what-grid { grid-template-columns: 1fr; }
    .whom-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 640px) {
    .whom-grid { grid-template-columns: 1fr; gap: 16px; }
    .whom-card { aspect-ratio: 16/10; }
    .whom-body { left: 22px; right: 22px; bottom: 22px; }
    .whom-title { font-size: 22px; margin-bottom: 8px; }
    .whom-desc  { font-size: 14px; line-height: 1.55; }
    .whom-gradient {
        background: linear-gradient(180deg, transparent 20%, rgba(5,8,22,.55) 45%, rgba(5,8,22,.96) 85%);
    }
}

/* ===== Gallery ===== */
.section-gallery { background: var(--night); }
.gallery-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    flex-wrap: wrap; gap: 24px; margin-bottom: 16px;
}
.gallery-lead  { max-width: 420px; font-size: 15px; }
.gallery-tabs  {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin: 32px 0 40px;
    align-items: center;
}
.gallery-count { margin-left: auto; font-size: 13px; color: var(--cream-faint); }
.gallery-cta   { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 48px; }
@media (max-width: 640px) {
    .gallery-cta { flex-direction: column; align-items: stretch; gap: 10px; }
    .gallery-cta .btn { justify-content: center; width: 100%; }
}

/* ===== Process ===== */
.section-process {
    background: var(--night-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.proc-wrap { margin-top: 64px; position: relative; }
.proc-line {
    position: absolute; left: 50%; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--line-strong), transparent);
    transform: translateX(-50%);
}
.proc-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}
.proc-text { text-align: left; }
.proc-row.is-flipped .proc-text { order: 1; text-align: right; }
.proc-row.is-flipped .proc-visual { order: 3; }
.proc-row:not(.is-flipped) .proc-text { order: 3; }
.proc-row:not(.is-flipped) .proc-visual { order: 1; }
.proc-dot {
    order: 2;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(212,175,55,.15), 0 0 20px rgba(212,175,55,.4);
    position: relative; z-index: 2;
}
.proc-text-head {
    display: flex; align-items: baseline; gap: 16px;
    justify-content: flex-start;
}
.proc-row.is-flipped .proc-text-head { justify-content: flex-end; }
.proc-num {
    font-family: var(--font-display);
    font-size: clamp(64px, 7vw, 100px);
    color: rgba(212,175,55,.22);
    line-height: 0.9;
}
.proc-time {
    font-size: 11px; letter-spacing: 0.24em;
    color: var(--gold); text-transform: uppercase; font-weight: 600;
    margin-bottom: 8px;
}
.proc-title { font-size: clamp(24px, 2.8vw, 34px); }
.proc-desc  {
    margin-top: 16px; font-size: 15px; line-height: 1.7;
    max-width: 440px;
}
.proc-row.is-flipped .proc-desc { margin-left: auto; }
.proc-visual-card {
    border-radius: 20px; overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--night-3), var(--night-4));
    border: 1px solid var(--line);
    position: relative;
}
.proc-visual-card img {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
}
.proc-visual-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(5,8,22,.1), rgba(5,8,22,.6));
}
.proc-cta { text-align: center; margin-top: 48px; }

@media (max-width: 900px) {
    .proc-line { display: none; }
    .proc-row  { grid-template-columns: 1fr; gap: 20px; }
    .proc-row > * { order: unset !important; text-align: left !important; }
    .proc-row.is-flipped .proc-text-head { justify-content: flex-start; }
    .proc-row.is-flipped .proc-desc { margin-left: 0; }
    .proc-dot  { display: none; }
}

/* ===== Materials ===== */
.section-materials { background: var(--night); }
.mat-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.cert-grid { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cert-card {
    padding: 20px; border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.02);
}
.cert-title { font-family: var(--font-display); font-size: 16px; color: var(--cream); }
.cert-desc  { font-size: 12px; margin-top: 6px; }

.mat-list  { display: grid; gap: 14px; }
.mat-item  { padding: 24px; display: flex; gap: 18px; }
.mat-icon  {
    flex-shrink: 0;
    width: 46px; height: 46px; border-radius: 12px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    display: grid; place-items: center;
}
.mat-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.mat-desc  { font-size: 14px; line-height: 1.6; }

@media (max-width: 900px) {
    .mat-grid  { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== Packages ===== */
.section-packages { background: var(--night-2); border-top: 1px solid var(--line); }
.pkg-grid  { margin-top: 16px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.pkg       { height: 100%; display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.pkg-body  { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.pkg-badge {
    position: absolute; top: 14px; right: 14px;
    padding: 4px 10px; border-radius: 999px;
    background: var(--gold); color: #0a0a0a;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    z-index: 3;
}
.pkg-tag   { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 6px; }
.pkg-name  { font-size: 28px; line-height: 1.1; letter-spacing: 0.06em; }
.pkg-subtitle { margin-top: 8px; font-size: 12px; color: var(--cream-faint); letter-spacing: 0.04em; }
.pkg-desc  { margin-top: 12px; font-size: 14px; line-height: 1.6; }
.pkg-divider { height: 1px; background: var(--line); margin: 20px 0; }
.pkg-features {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 10px; flex: 1;
}
.pkg-features li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.pkg-features li svg { flex-shrink: 0; margin-top: 3px; }
.pkg-cta   { margin-top: 24px; width: 100%; justify-content: center; }
.pkg-inquire {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 12px; color: var(--cream-dim); font-size: 13px;
    letter-spacing: 0.02em; text-decoration: none;
    align-self: center; transition: gap .2s ease, color .2s ease;
}
.pkg-inquire:hover { gap: 10px; color: var(--gold); }

.pkg .price { margin-top: 8px; }

/* Package video card media */
.pkg-media {
    position: relative; width: 100%;
    aspect-ratio: 16/9; overflow: hidden;
    background: #0a0a0a; cursor: pointer;
}
.pkg-media .pkg-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.pkg-play-btn {
    position: absolute; inset: 0; margin: auto;
    width: 56px; height: 56px; border-radius: 999px;
    background: rgba(212,175,55,0.92); color: #0a0a0a;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: transform .2s ease, background .2s ease, opacity .2s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 6px rgba(212,175,55,0.16);
    z-index: 2;
}
.pkg-play-btn:hover { transform: scale(1.06); background: rgba(212,175,55,1); }
.pkg-play-btn svg { margin-left: 3px; }
.pkg-media.is-playing .pkg-play-btn { opacity: 0; pointer-events: none; }
.pkg-media-hero { aspect-ratio: 4/5; border-radius: var(--radius-card); }


/* Addon package (Malby na stěnu) — full-width card under grid */
.pkg-addon {
    margin-top: 32px;
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(20,20,20,0.4));
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-card);
    overflow: hidden;
}
.pkg-addon-media { position: relative; min-height: 280px; background: #0a0a0a; }
.pkg-addon-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pkg-addon-media.pkg-media { aspect-ratio: auto; min-height: 380px; cursor: pointer; }
.pkg-addon-media.pkg-media .pkg-video { width: 100%; height: 100%; object-fit: cover; }
.pkg-addon-body { padding: 36px 36px; display: flex; flex-direction: column; justify-content: center; }
.pkg-addon-tag {
    font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--gold); font-weight: 600;
}
.pkg-addon-name { font-size: 32px; margin-top: 8px; letter-spacing: 0.04em; }
.pkg-addon-price { margin-top: 14px; font-size: 18px; }
.pkg-addon-price .gold { font-weight: 700; }
.pkg-addon-price-note { font-size: 13px; margin-left: 8px; }
.pkg-addon-desc { margin-top: 14px; font-size: 15px; line-height: 1.6; }
.pkg-addon-sections {
    margin-top: 22px;
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.pkg-addon-section-title {
    font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); font-weight: 700;
    margin-bottom: 12px;
}
.pkg-addon-section-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 8px;
}
.pkg-addon-section-list li {
    display: flex; gap: 8px;
    font-size: 13px; line-height: 1.5;
    color: var(--cream-muted);
    align-items: flex-start;
}
.pkg-addon-section-list li svg { flex-shrink: 0; margin-top: 3px; }
.pkg-addon-ctas { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1100px) {
    .pkg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .pkg-grid { grid-template-columns: 1fr; }
    .pkg-media { aspect-ratio: 16/10; }
    .pkg-addon { grid-template-columns: 1fr; }
    .pkg-addon-media { aspect-ratio: 16/10; min-height: 0; }
    .pkg-addon-media.pkg-media { aspect-ratio: 16/10; min-height: 0; }
    .pkg-addon-body { padding: 24px; }
    .pkg-addon-sections { grid-template-columns: 1fr; gap: 18px; }
}

/* Package hero (subpage) extras */
.pkg-hero-subtitle {
    margin-top: 12px; font-size: 13px; color: var(--cream-faint);
    letter-spacing: 0.04em;
}
.pkg-hero-price-note { font-size: 14px; margin-left: 10px; }

/* Package addon sections grid (Dětské motivy / Teenage motivy) */
.pkg-sections-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px;
    margin-top: 8px;
}
.pkg-section-card { padding: 28px 26px; }
.pkg-section-desc { margin-top: 10px; font-size: 14px; line-height: 1.6; }
.pkg-section-list {
    list-style: none; padding: 0; margin: 18px 0 0;
    display: grid; gap: 10px;
}
.pkg-section-list li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.pkg-section-list li svg { flex-shrink: 0; margin-top: 3px; }
.pkg-section-note {
    margin-top: 18px; padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 13px; line-height: 1.6; font-style: italic;
}

/* Package benefits/ideal-for two-card grid */
.pkg-benefits-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px;
}
.pkg-benefits-card { padding: 28px 26px; }

@media (max-width: 800px) {
    .pkg-sections-grid,
    .pkg-benefits-grid { grid-template-columns: 1fr; }
}

/* ===== Reviews ===== */
.section-reviews { background: var(--night); position: relative; }
.reviews-head {
    display: flex; justify-content: space-between;
    align-items: flex-end; flex-wrap: wrap; gap: 24px;
    margin-bottom: 48px;
}
.reviews-stars { display: flex; gap: 2px; }
.reviews-rating { display: flex; align-items: center; gap: 12px; }
.reviews-rating-label { font-size: 14px; font-weight: 600; }

.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev-card { padding: 32px; height: 100%; display: flex; flex-direction: column; }
.rev-quote      { opacity: .8; }
.rev-quote-text { margin-top: 20px; font-size: 16px; line-height: 1.7; color: var(--cream); flex: 1; }
.rev-footer     {
    margin-top: 24px;
    display: flex; align-items: center; gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.rev-avatar {
    width: 44px; height: 44px; border-radius: 12px; overflow: hidden;
    background: var(--night-3); flex-shrink: 0;
    border: 1px solid var(--line);
}
.rev-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rev-name { font-weight: 700; font-size: 14px; }
.rev-role { font-size: 12px; color: var(--cream-faint); }

.reels-head {
    margin-top: 100px; display: flex;
    align-items: flex-end; justify-content: space-between;
    flex-wrap: wrap; gap: 20px; margin-bottom: 28px;
}
.reels-h3   { font-size: clamp(26px, 3vw, 38px); margin-top: 12px; }
.reel-grid  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reel-card  {
    position: relative;
    display: flex; flex-direction: column;
    border-radius: 20px; overflow: hidden;
    border: 1px solid var(--line);
    background: var(--night-3);
    transition: border-color .3s, transform .3s;
    isolation: isolate;
}
.reel-card:hover { border-color: rgba(212,175,55,.3); }
.reel-media {
    position: relative;
    aspect-ratio: 9/16;
    background: #000;
    overflow: hidden;
}
.reel-duration {
    position: absolute; top: 16px; right: 16px;
    padding: 4px 8px; border-radius: 6px;
    background: rgba(0,0,0,.65); backdrop-filter: blur(8px);
    font-size: 11px; font-weight: 600;
    z-index: 2;
    pointer-events: none;
}
.reel-body  { padding: 14px 16px 16px; }
.reel-title { font-size: 14px; font-weight: 600; line-height: 1.3; }
.reel-views { font-size: 11px; color: var(--cream-faint); margin-top: 4px; }

@media (max-width: 900px) {
    .rev-grid  { grid-template-columns: 1fr; }
    .reel-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Calculator ===== */
.section-calculator {
    background: var(--night-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.calc-wrap   { max-width: 860px; }
.calc-card   {
    padding: clamp(24px, 4vw, 48px);
    background: var(--night-3);
    border-radius: 32px;
}
.calc-form   { display: flex; flex-direction: column; }
.calc-status {
    padding: 14px 18px; border-radius: 14px;
    background: rgba(120, 240, 200, .08);
    border: 1px solid rgba(120, 240, 200, .35);
    color: var(--glow); font-size: 14px; margin-bottom: 20px;
}
.calc-group  { margin-bottom: 32px; }
.calc-label  { display: block; font-size: 15px; font-weight: 600; color: var(--cream); margin-bottom: 16px; }
.calc-variants { display: flex; flex-direction: column; gap: 12px; }
.calc-variant {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px; border-radius: 16px;
    border: 2px solid rgba(255,255,255,.1);
    background: transparent;
    color: var(--cream);
    text-align: left;
    transition: all .2s; cursor: pointer;
}
.calc-variant:hover { border-color: rgba(255,255,255,.3); }
.calc-variant.is-active {
    border-color: var(--gold);
    background: rgba(212,175,55,.10);
}
.calc-variant-main  { display: flex; align-items: center; gap: 18px; min-width: 0; flex: 1; }
.calc-variant-name  { font-size: 18px; font-weight: 600; color: var(--cream-dim); flex-shrink: 0; letter-spacing: 0.02em; }
.calc-variant-desc  { font-size: 14px; color: var(--cream-dim); line-height: 1.4; }
.calc-variant-price { font-size: 14px; font-weight: 600; color: var(--cream-dim); flex-shrink: 0; margin-left: 16px; white-space: nowrap; }
.calc-variant.is-active .calc-variant-name  { color: var(--gold); }
.calc-variant.is-active .calc-variant-desc  { color: var(--cream); }
.calc-variant.is-active .calc-variant-price { color: var(--gold); }

@media (max-width: 640px) {
    .calc-variant         { flex-wrap: wrap; align-items: flex-start; gap: 4px 12px; }
    .calc-variant-main    { display: contents; }
    .calc-variant-name    { order: 1; flex: 1 1 auto; }
    .calc-variant-price   { order: 2; flex: 0 0 auto; margin-left: 0; }
    .calc-variant-desc    { order: 3; flex: 1 1 100%; width: 100%; margin-top: 4px; }
}

.calc-range { width: 100%; accent-color: var(--gold); height: 8px; }
.calc-range-ends { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.5); margin-top: 8px; }

.calc-total {
    background: var(--night); border-radius: 16px;
    padding: 24px; text-align: center; margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,.1);
}
.calc-total-label { font-size: 14px; color: rgba(255,255,255,.5); margin: 0 0 8px; }
.calc-total-value {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    color: var(--gold);
    margin: 0; line-height: 1;
}
.calc-total-note  { font-size: 12px; color: rgba(255,255,255,.4); margin: 10px 0 0; }

.calc-perks { display: flex; flex-direction: row; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.calc-perk  {
    flex: 1 1 220px;
    background: rgba(5,8,22,.8);
    border-radius: 16px; padding: 14px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.1);
}
.calc-perk p { margin: 0; font-size: 12px; color: rgba(255,255,255,.6); }
.calc-perk strong { color: var(--cream); }
.calc-perk-gold {
    background: rgba(212,175,55,.10);
    border: 1px solid rgba(212,175,55,.25);
}
.calc-perk-gold p { color: var(--gold); font-weight: 600; }

.calc-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-bottom: 14px; }
.calc-submit { width: auto; align-self: center; justify-content: center; padding: 12px 24px; font-size: 14px; font-weight: 600; border-radius: 999px; margin-top: 14px; }
.calc-error  { color: #ff8a8a; font-size: 13px; }
.calc-form .field { margin-bottom: 14px; }
.calc-form .field:last-of-type { margin-bottom: 0; }

/* ===== Contact ===== */
.section-contact { background: var(--night); position: relative; overflow: hidden; }
.contact-wrap    { position: relative; z-index: 2; }
.contact-card {
    border-radius: 40px;
    padding: clamp(40px, 5vw, 72px);
    border: 1px solid rgba(212,175,55,.3);
    background:
        radial-gradient(80% 100% at 50% 0%, rgba(212,175,55,.14), transparent 70%),
        linear-gradient(180deg, var(--night-3), var(--night-2));
}
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.contact-authors { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 22px; }
.contact-authors .contact-author { margin-top: 0; }
.contact-author { margin-top: 36px; display: flex; align-items: center; gap: 14px; }
.contact-author-avatar {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: grid; place-items: center;
    font-family: var(--font-display); color: #0a0a0a; font-size: 22px;
}
.contact-author-name { font-weight: 700; font-size: 16px; }
.contact-author-role { font-size: 13px; color: var(--cream-dim); }
.contact-links { margin-top: 28px; display: grid; gap: 10px; }
.contact-link  { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--cream-dim); }

.contact-form  { display: grid; gap: 12px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form-textarea { resize: none; }
.contact-submit { width: auto; align-self: flex-start; justify-content: center; padding: 12px 24px; font-size: 14px; }
@media (max-width: 640px) {
    .contact-submit, .calc-submit { width: 100%; align-self: stretch; padding: 14px 22px; font-size: 14px; }
}
.contact-footnote { font-size: 11px; color: var(--cream-faint); text-align: center; margin-top: 4px; }

@media (max-width: 900px) {
    .contact-grid     { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-row { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.section-faq { background: var(--night-2); }
.faq-wrap    { max-width: 920px; }
.faq-list    { display: grid; gap: 8px; }
.faq-item    {
    background: rgba(255,255,255,.02);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 28px;
    color: var(--cream);
    width: 100%;
    text-align: left;
    transition: all .2s;
    display: block;
}
.faq-item.is-open {
    background: rgba(212,175,55,.05);
    border-color: rgba(212,175,55,.3);
}
.faq-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q   { font-size: 16px; font-weight: 600; }
.faq-plus {
    color: var(--gold);
    transition: transform .25s;
    font-size: 24px; line-height: 1;
}
.faq-item.is-open .faq-plus { transform: rotate(45deg); }
.faq-a   { margin: 0; max-height: 0; overflow: hidden; font-size: 15px; line-height: 1.7; color: var(--cream-dim); transition: max-height .25s ease, margin-top .25s ease; }
.faq-item.is-open .faq-a { margin-top: 16px; max-height: 400px; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); border-top: 1px solid var(--line); padding: 60px 0 40px; }
.foot-grid   { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.foot-about  { margin-top: 20px; font-size: 14px; line-height: 1.7; max-width: 380px; }
.foot-heading {
    font-size: 12px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 18px; font-weight: 600;
}
.foot-links  { display: grid; gap: 10px; font-size: 14px; }
.foot-bottom {
    border-top: 1px solid var(--line);
    margin-top: 48px; padding-top: 24px;
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    font-size: 12px; color: var(--cream-faint);
}
.foot-legal { display: flex; gap: 20px; }

@media (max-width: 900px) {
    .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .foot-grid { grid-template-columns: 1fr; }
}

/* ===== Reel (inline video) ===== */
.reel-video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}
.reel-card:has(.reel-video:not([controls])) { cursor: default; }
.reel-modal {
    position: fixed; inset: 0;
    background: rgba(6, 4, 14, .88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    align-items: center; justify-content: center;
    z-index: 1000;
    padding: clamp(16px, 4vw, 48px);
}
.reel-modal.is-open { display: flex; }
.reel-modal-video {
    max-width: min(960px, 100%);
    max-height: 85vh;
    width: auto;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 60px rgba(212,175,55,.15);
    background: #000;
}
.reel-modal-close {
    position: absolute;
    top: clamp(12px, 3vw, 24px);
    right: clamp(12px, 3vw, 24px);
    width: 44px; height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(0,0,0,.4);
    color: var(--cream, #f5e9c9);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}
.reel-modal-close:hover {
    background: rgba(0,0,0,.7);
    border-color: var(--gold, #D4AF37);
}

/* ===== Pigment gallery (materials) ===== */
.pigment-gallery {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.pigment-gallery img {
    width: 100%; aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
    transition: transform .4s, border-color .3s;
}
.pigment-gallery img:hover {
    transform: scale(1.03);
    border-color: rgba(212,175,55,.4);
}
@media (max-width: 700px) {
    .pigment-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Lightbox (gallery) ===== */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(3, 2, 10, .93);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center; justify-content: center;
    z-index: 1000;
    padding: clamp(16px, 4vw, 56px);
}
.lightbox.is-open { display: flex; }
.lightbox-figure {
    margin: 0;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    max-width: 100%;
}
.lightbox-img {
    max-width: min(1400px, 100%);
    max-height: 82vh;
    width: auto; height: auto;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 80px rgba(212,175,55,.12);
    background: #000;
    object-fit: contain;
}
.lightbox-caption {
    color: var(--cream, #f5e9c9);
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: .8;
}
.lightbox-close,
.lightbox-nav {
    position: absolute;
    width: 48px; height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(0,0,0,.4);
    color: var(--cream, #f5e9c9);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .2s;
}
.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(0,0,0,.75);
    border-color: var(--gold, #D4AF37);
}
.lightbox-close {
    top: clamp(12px, 3vw, 28px);
    right: clamp(12px, 3vw, 28px);
}
.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-prev { left: clamp(12px, 3vw, 28px); }
.lightbox-next { right: clamp(12px, 3vw, 28px); }
@media (max-width: 560px) {
    .lightbox-nav { width: 40px; height: 40px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

/* ===== Language switcher ===== */
.lang-switch {
    display: inline-flex;
    gap: 2px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
}
.lang-opt {
    font-size: 11px;
    letter-spacing: 0.15em;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--cream-dim);
    transition: background .2s, color .2s;
}
.lang-opt:hover { color: var(--cream); }
.lang-opt.is-active {
    background: var(--gold);
    color: #0a0a0a;
}
@media (max-width: 900px) {
    .lang-switch { order: -1; }
}

/* ===== Language dropdown ===== */
.lang-dropdown {
    position: relative;
}
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(245,240,230,.06);
    color: var(--cream);
    font-size: 12px;
    letter-spacing: 0.18em;
    font-weight: 700;
    line-height: 1;
    transition: background .2s, border-color .2s;
}
.lang-toggle:hover { background: rgba(245,240,230,.12); border-color: var(--gold); }
.lang-toggle svg { transition: transform .2s; }
.lang-dropdown.is-open .lang-toggle svg { transform: rotate(180deg); }
.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 110px;
    padding: 6px;
    background: rgba(12, 16, 34, .95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    display: none;
    flex-direction: column;
    gap: 2px;
    z-index: 80;
}
.lang-dropdown.is-open .lang-menu { display: flex; }
.lang-menu-item {
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--cream-dim);
    font-size: 13px;
    letter-spacing: 0.18em;
    font-weight: 700;
    transition: background .15s, color .15s;
}
.lang-menu-item:hover { background: rgba(245,240,230,.08); color: var(--cream); }
.lang-menu-item.is-active { background: var(--gold); color: #0a0a0a; }

/* ===== Hamburger / mobile nav ===== */
.nav-burger {
    display: none;
    width: 42px; height: 42px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    background: rgba(245,240,230,.06);
    position: relative;
}
.nav-burger span {
    display: block;
    position: absolute;
    left: 10px; right: 10px;
    height: 2px;
    background: var(--cream);
    transition: transform .25s, opacity .2s, top .25s;
}
.nav-burger span:nth-child(1) { top: 13px; }
.nav-burger span:nth-child(2) { top: 20px; }
.nav-burger span:nth-child(3) { top: 27px; }
.nav-burger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.mobile-nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(3, 2, 10, .6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.mobile-nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(380px, 92vw);
    height: 100dvh;
    background: rgba(5, 8, 22, .98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.2,.7,.2,1), visibility 0s linear .3s;
    z-index: 100;
    padding: 72px 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    overflow-y: auto;
    visibility: hidden;
    will-change: transform;
}
.mobile-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), visibility 0s linear 0s;
}
.mobile-nav-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 42px; height: 42px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(245,240,230,.06);
    color: var(--cream);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}
.mobile-nav-close:hover {
    background: rgba(245,240,230,.12);
    border-color: var(--gold);
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    transition: color .2s, padding-left .2s;
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 8px; }
.mobile-nav-footer {
    display: flex; flex-direction: column; gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.mobile-nav-footer .btn { justify-content: center; width: 100%; }

/* ===== Reel Instagram badge ===== */
.reel-ig-badge {
    position: absolute;
    top: 12px; left: 12px;
    width: 34px; height: 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d 50%, #fcaf45);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(0,0,0,.5);
    z-index: 10;
    pointer-events: auto;
    transition: transform .2s;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,.2);
}
.reel-ig-badge:hover { transform: scale(1.12); }
.reel-ig-badge:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ===== Responsive nav ===== */
@media (max-width: 1024px) {
    .desktop-nav { display: none; }
    .nav-burger { display: inline-flex; align-items: center; justify-content: center; }
    .nav-phone, .nav-cta { display: none; }
}
@media (min-width: 1025px) {
    .mobile-nav { display: none !important; }
}

/* ===== Subpage hero ===== */
.section-subpage-hero {
    padding: clamp(100px, 14vw, 160px) 0 clamp(60px, 8vw, 100px);
    background: linear-gradient(180deg, var(--night-3), var(--night));
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.section-subpage-hero::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at top, rgba(212,175,55,.07), transparent 60%);
    pointer-events: none;
}
.subpage-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.subpage-h1 {
    font-size: clamp(38px, 5.2vw, 72px);
    margin-top: 20px;
    line-height: 1;
}
.subpage-lead {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.65;
    max-width: 560px;
}
.subpage-ctas {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.subpage-hero-media {
    border-radius: var(--radius-big);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 40px 80px rgba(0,0,0,.4);
    aspect-ratio: 4/5;
}
.subpage-hero-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
    .subpage-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .subpage-hero-media { aspect-ratio: 4/3; }
}

/* ===== Whom card link ===== */
.whom-card {
    display: block;
    position: relative;
}
.whom-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap .2s;
}
.whom-card:hover .whom-more { gap: 10px; }

/* ===== Process compact (no visuals) ===== */
.proc-row-compact {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 28px;
    padding: 10px 0;
    min-height: 0;
}
.proc-row-compact .proc-dot { grid-column: 2; order: 2; }
.proc-row-compact.is-flipped .proc-text {
    grid-column: 1;
    order: 1;
    text-align: right;
}
.proc-row-compact.is-flipped .proc-text-head { justify-content: flex-end; }
.proc-row-compact.is-flipped .proc-desc { margin-left: auto; }
.proc-row-compact:not(.is-flipped) .proc-text {
    grid-column: 3;
    order: 3;
    text-align: left;
}
.proc-row-compact:not(.is-flipped) .proc-text-head { justify-content: flex-start; }
.proc-row-compact:not(.is-flipped) .proc-desc { margin-left: 0; }

@media (max-width: 900px) {
    .proc-row-compact { grid-template-columns: 1fr; gap: 12px; padding: 20px 0; }
    .proc-row-compact .proc-text { grid-column: 1 !important; order: 0 !important; text-align: left !important; }
    .proc-row-compact .proc-text-head {
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 4px;
    }
    .proc-row-compact .proc-num { font-size: 38px; line-height: 1; }
    .proc-row-compact .proc-title { font-size: 22px; line-height: 1.18; }
    .proc-row-compact .proc-desc { margin-left: 0 !important; }
}

/* ===== Process "Detail kroku" link ===== */
.proc-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap .2s;
}
.proc-more:hover { gap: 10px; }
.proc-row-compact.is-flipped .proc-more { justify-content: flex-end; }
@media (max-width: 900px) {
    .proc-row-compact.is-flipped .proc-more { justify-content: flex-start !important; }
}

/* ===== Packages "Detail balíčku" link ===== */
.pkg-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    transition: gap .2s;
}
.pkg-more:hover { gap: 10px; }

/* ===== Process subpage ===== */
.proc-meta-row {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.proc-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    color: var(--cream);
    background: rgba(255,255,255,0.03);
}
.subpage-hero-illustration {
    aspect-ratio: 1/1;
    background: radial-gradient(ellipse at center, rgba(212,175,55,.08), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.subpage-hero-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.section-proc-nav {
    padding: 0 0 clamp(60px, 8vw, 100px);
}
.proc-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.proc-nav-card {
    display: block;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: rgba(255,255,255,0.02);
    transition: border-color .2s, transform .2s;
}
.proc-nav-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}
.proc-nav-card-right { text-align: right; }
.proc-nav-label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.proc-nav-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--cream);
}
@media (max-width: 700px) {
    .proc-nav-grid { grid-template-columns: 1fr; }
    .proc-nav-card-right { text-align: left; }
}

/* ===== Package subpage ===== */
.pkg-hero-price {
    margin-top: 16px;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(212,175,55,.12);
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.02em;
}
.section-package-features { padding: clamp(60px, 8vw, 100px) 0; }
.pkg-features-wide {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.pkg-features-wide-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: rgba(255,255,255,0.02);
    font-size: 15px;
    color: var(--cream);
}
.pkg-features-wide-item svg { flex-shrink: 0; margin-top: 2px; }

.section-package-specs { padding: 0 0 clamp(60px, 8vw, 100px); }
.pkg-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.pkg-specs-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
}
.pkg-specs-card .what-card-title { margin-bottom: 18px; }
.pkg-ideal-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pkg-ideal-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 15px;
    color: var(--cream);
}
.pkg-specs-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pkg-specs-list > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}
.pkg-specs-list > div:last-child { border-bottom: none; padding-bottom: 0; }
.pkg-specs-list dt {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-dim);
}
.pkg-specs-list dd {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--cream);
    text-align: right;
}
.pkg-specs-cta {
    margin-top: 24px;
    align-self: flex-start;
    padding: 10px 18px;
    font-size: 13px;
}
@media (max-width: 900px) {
    .pkg-specs-grid { grid-template-columns: 1fr; }
}

/* ===== WhatsApp nav button ===== */
.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #25D366;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.25);
    transition: background .2s, transform .2s;
}
.nav-whatsapp:hover { background: rgba(37, 211, 102, 0.22); transform: scale(1.05); }
.btn-whatsapp {
    background: #25D366;
    color: #0A1D12;
    border-color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-whatsapp:hover { background: #1fb959; border-color: #1fb959; color: #0A1D12; }
.contact-link-whatsapp { color: #25D366; }
.contact-link-whatsapp:hover { color: #1fb959; }
@media (max-width: 1024px) {
    .nav-whatsapp { display: none; }
}

/* ===== About section ===== */
.section-about {
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
}
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    column-gap: 70px;
    row-gap: 28px;
    align-items: start;
    grid-template-areas:
        "head media"
        "body media";
}
.about-head       { grid-area: head; }
.about-media-wrap { grid-area: media; position: sticky; top: 100px; }
.about-body       { grid-area: body; }
.about-paragraphs {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--cream-muted);
    max-width: 620px;
}
.about-paragraphs p { margin: 0 0 6px; }
.about-paragraphs p:last-child { margin-bottom: 0; }
.about-stats {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.about-stat-value {
    font-family: 'Audiowide', sans-serif;
    font-size: 30px;
    color: var(--gold);
}
.about-stat-label { font-size: 13px; margin-top: 4px; }
.about-cta { margin-top: 32px; }
.about-media {
    position: relative;
    border-radius: var(--radius-big);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 40px 80px rgba(0,0,0,.4);
    aspect-ratio: 4/5;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media-caption {
    position: absolute;
    left: 20px; right: 20px; bottom: 20px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(5, 8, 22, 0.75);
    backdrop-filter: blur(8px);
    color: var(--cream);
    font-size: 13px;
    border: 1px solid var(--line);
}
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        grid-template-areas:
            "head"
            "media"
            "body";
    }
    .about-media-wrap { position: static; top: auto; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .about-stat-value { font-size: 24px; }
    .about-media { aspect-ratio: 4/5; max-width: 420px; margin: 0 auto; }
}

/* ===== Suitability section ===== */
.section-suitability {
    padding: clamp(80px, 10vw, 120px) 0;
    background: linear-gradient(180deg, var(--night), var(--night-2));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.suit-legend {
    margin-top: 40px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}
.suit-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--cream-muted);
}
.suit-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.suit-legend-item.is-yes   .suit-dot { background: #3fb950; }
.suit-legend-item.is-maybe .suit-dot { background: #D4AF37; }
.suit-legend-item.is-no    .suit-dot { background: #f85149; }

.suit-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.suit-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: rgba(255,255,255,0.02);
    height: 100%;
    transition: border-color .2s, transform .2s;
}
.suit-card:hover { transform: translateY(-2px); }
.suit-card.is-yes   { border-color: rgba(63, 185, 80, 0.25); }
.suit-card.is-maybe { border-color: rgba(212, 175, 55, 0.25); }
.suit-card.is-no    { border-color: rgba(248, 81, 73, 0.2); opacity: 0.85; }
.suit-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.suit-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.suit-badge.is-yes   { background: rgba(63, 185, 80, 0.18);  color: #3fb950; }
.suit-badge.is-maybe { background: rgba(212, 175, 55, 0.18); color: var(--gold); }
.suit-badge.is-no    { background: rgba(248, 81, 73, 0.18);  color: #f85149; }
.suit-card-title { font-size: 16px; font-weight: 600; color: var(--cream); }
.suit-card-desc { font-size: 14px; line-height: 1.6; }

.suit-note {
    margin-top: 32px;
    padding: 16px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: rgba(212, 175, 55, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--cream-muted);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.suit-note svg { flex-shrink: 0; }
@media (max-width: 960px) { .suit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .suit-grid { grid-template-columns: 1fr; } }

/* ===== Compare section ===== */
.section-compare {
    padding: clamp(80px, 10vw, 120px) 0;
}
.compare-wrap {
    margin-top: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius-big);
    background: rgba(255,255,255,0.02);
    overflow: hidden;
}
.compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}
.compare-table th,
.compare-table td {
    padding: 16px 18px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
    color: var(--cream-muted);
    vertical-align: middle;
}
.compare-table th {
    font-weight: 700;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    background: rgba(255,255,255,0.03);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .compare-label {
    color: var(--cream);
    font-weight: 600;
}
.compare-table .is-highlight {
    background: rgba(212, 175, 55, 0.08);
    color: var(--cream);
    font-weight: 500;
    position: relative;
}
.compare-table th.is-highlight {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.12);
}

/* ===== Voucher section ===== */
.section-voucher {
    padding: clamp(80px, 10vw, 120px) 0;
}
.voucher-card {
    position: relative;
    padding: clamp(40px, 6vw, 72px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-big);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(11, 20, 40, 0.5));
    overflow: hidden;
}
.voucher-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.15), transparent 60%);
    pointer-events: none;
}
.voucher-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.voucher-cta { margin-top: 24px; }
.voucher-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.voucher-points li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.voucher-point-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.voucher-point-t { font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 2px; }
.voucher-point-d { font-size: 14px; line-height: 1.5; }
@media (max-width: 900px) {
    .voucher-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Guarantee section ===== */
.section-guarantee {
    padding: 0 0 clamp(40px, 6vw, 72px);
}
.guarantee-card {
    padding: clamp(32px, 5vw, 48px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-big);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), rgba(11, 20, 40, 0.4));
}
.guarantee-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}
.guarantee-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.guarantee-title {
    font-size: clamp(22px, 3vw, 30px);
    color: var(--cream);
}
.guarantee-lead {
    font-size: 15px;
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 32px;
}
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.guarantee-point {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: rgba(255,255,255,0.02);
}
.guarantee-point-t { font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.guarantee-point-d { font-size: 13px; line-height: 1.55; }
@media (max-width: 800px) {
    .guarantee-grid { grid-template-columns: 1fr; }
    .guarantee-head { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ===== Calc bigger project note ===== */
.calc-bigger {
    margin: 32px auto 0;
    max-width: 720px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-card);
    background: rgba(212, 175, 55, 0.04);
}
.calc-bigger svg { flex-shrink: 0; }
.calc-bigger-label { font-size: 14px; color: var(--cream); margin-bottom: 2px; }
.calc-bigger-cta {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--gold);
    transition: gap .2s;
}
.calc-bigger-cta:hover { text-decoration: underline; }
