/* =========================================================
   Miriam Czompoly — Interiérový dizajn Trnava
   Shared design system. Premium editorial aesthetic.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Warm neutral palette */
  --paper:      #FAF6EF;   /* main warm cream background */
  --paper-2:    #F3ECDF;   /* alternate section (sand) */
  --sand:       #EADFCB;   /* warm sand */
  --greige:     #D6C7AF;   /* warm greige */
  --greige-2:   #C3AF92;   /* deeper greige */
  --ink:        #262019;   /* warm charcoal (text / dark sections) */
  --ink-2:      #1D1813;   /* deepest espresso */
  --ink-soft:   #4C453B;   /* secondary text */
  --muted:      #857B6C;   /* muted captions */
  --brass:      #A9885E;   /* metallic accent */
  --brass-deep: #856A44;   /* readable brass on light */
  --brass-soft: #C9A876;
  --line:       #E4D9C6;   /* hairline */
  --line-2:     #D8CBB4;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1220px;
  --container-narrow: 860px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 14px rgba(38, 32, 25, 0.06);
  --shadow-md: 0 14px 44px rgba(38, 32, 25, 0.10);
  --shadow-lg: 0 30px 80px rgba(38, 32, 25, 0.18);
  --ease: cubic-bezier(0.22, 0.61, 0.24, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: var(--brass); color: var(--paper); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); }
.h1, h1 { font-size: clamp(2.6rem, 1.6rem + 4.4vw, 5.1rem); font-weight: 500; }
.h2, h2 { font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem); }
.h3, h3 { font-size: clamp(1.45rem, 1.1rem + 1.4vw, 2rem); }
p { max-width: 65ch; }
strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

.lead { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.32rem); line-height: 1.65; color: var(--ink-soft); }
.serif-accent { font-family: var(--font-display); font-style: italic; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.container-narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(4.5rem, 3rem + 8vw, 9rem); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 2.5rem + 5vw, 6rem); }
.section--paper2 { background: var(--paper-2); }
.section--sand { background: linear-gradient(180deg, var(--paper-2), var(--sand)); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark .lead { color: rgba(250, 246, 239, 0.78); }
.section--dark .eyebrow { color: var(--brass-soft); }
.section--dark .eyebrow::before { background: var(--brass-soft); }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head p { margin-top: 1.1rem; }
.section-head.center p { margin-inline: auto; }

.divider { height: 1px; background: var(--line); border: 0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em;
  padding: 1.05em 1.9em;
  border-radius: 50px;
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.btn--primary { --btn-bg: var(--ink); --btn-fg: var(--paper); }
.btn--primary:hover { background: var(--brass-deep); }
.btn--brass { --btn-bg: var(--brass); --btn-fg: #fff; }
.btn--brass:hover { background: var(--brass-deep); }
.btn--outline {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border: 1px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--paper); box-shadow: none; }
.section--dark .btn--outline { --btn-fg: var(--paper); border-color: rgba(250,246,239,.5); }
.section--dark .btn--outline:hover { background: var(--paper); color: var(--ink); }
.btn--light { --btn-bg: var(--paper); --btn-fg: var(--ink); }
.btn--light:hover { background: var(--brass); color:#fff; }
.btn--sm { padding: 0.8em 1.4em; font-size: 0.82rem; }
.btn--block { display: flex; width: 100%; }

/* text link (secondary, must not compete with CTA) */
.textlink {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-weight: 500; color: var(--brass-deep);
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease), gap .3s var(--ease);
}
.textlink:hover { color: var(--ink); border-color: var(--brass); gap: 0.65em; }
.textlink .arrow { transition: transform .3s var(--ease); }
.textlink:hover .arrow { transform: translateX(3px); }

/* proof link on cards — highlighted clickable text, smaller than CTA */
.proof-link {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-size: 0.92rem; font-weight: 600; font-style: italic;
  font-family: var(--font-display);
  color: var(--brass-deep);
  border-bottom: 1.5px solid var(--brass-soft);
  padding-bottom: 1px;
  transition: color .3s var(--ease), border-color .3s var(--ease), gap .3s var(--ease);
}
.proof-link:hover { color: var(--ink); border-color: var(--brass-deep); gap: 0.62em; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  padding-block: 1.35rem;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250, 246, 239, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 rgba(38,32,25,.04), var(--shadow-sm);
  padding-block: 0.85rem;
  border-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.01em; color: var(--ink); }
.brand .brand-sub { font-family: var(--font-body); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass-deep); margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; align-items: center; gap: 1.7rem; }
.nav-list a {
  font-size: 0.86rem; font-weight: 500; letter-spacing: 0.03em; color: var(--ink-soft);
  position: relative; padding-block: 4px; transition: color .3s var(--ease);
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--brass);
  transition: width .35s var(--ease);
}
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--ink); }
.nav-list a:hover::after, .nav-list a[aria-current="page"]::after { width: 100%; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 22px; height: 1.5px; background: var(--ink); display: block; transition: .3s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 1.5px; background: var(--ink); transition: .3s var(--ease); }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem clamp(1.5rem, 8vw, 4rem) 3rem;
  visibility: hidden;
}
body.nav-open .mobile-menu { transform: translateX(0); visibility: visible; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu a.m-link {
  font-family: var(--font-display); font-size: clamp(1.9rem, 8vw, 2.6rem); font-weight: 500; color: var(--ink);
  padding-block: 0.35rem; display: inline-block; opacity: 0; transform: translateY(12px);
}
body.nav-open .mobile-menu a.m-link { animation: menuIn .5s var(--ease) forwards; }
.mobile-menu li:nth-child(1) a { animation-delay: .08s; }
.mobile-menu li:nth-child(2) a { animation-delay: .14s; }
.mobile-menu li:nth-child(3) a { animation-delay: .20s; }
.mobile-menu li:nth-child(4) a { animation-delay: .26s; }
.mobile-menu li:nth-child(5) a { animation-delay: .32s; }
.mobile-menu li:nth-child(6) a { animation-delay: .38s; }
.mobile-menu li:nth-child(7) a { animation-delay: .44s; }
@keyframes menuIn { to { opacity: 1; transform: none; } }
.mobile-menu .btn { margin-top: 2.2rem; align-self: flex-start; }
.mobile-menu .m-contact { margin-top: 2.4rem; color: var(--muted); font-size: 0.9rem; letter-spacing: .04em; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(8rem, 12vh, 11rem); padding-bottom: clamp(3.5rem, 6vw, 6rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 60vw; height: 120%;
  background: radial-gradient(ellipse at center, rgba(214,199,175,.35), transparent 60%);
  z-index: 0; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; position: relative; z-index: 1; }
.hero-copy { max-width: 620px; }
.hero h1 { margin-top: 1.4rem; }
.hero h1 .accent { font-style: italic; color: var(--brass-deep); }
.hero-sub { margin-top: 1.6rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 1.8rem; margin-top: 2.4rem; }
.hero-secondary { font-size: 0.98rem; color: var(--ink-soft); }
.hero-secondary a { border-bottom: 1px solid var(--brass-soft); color: var(--brass-deep); font-weight: 500; transition: .3s var(--ease); }
.hero-secondary a:hover { color: var(--ink); border-color: var(--brass-deep); }

.hero-figure { position: relative; }
.hero-figure .ph { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); }
.hero-figure .ph-badge {
  position: absolute; left: -22px; bottom: 32px; background: var(--paper); color: var(--ink);
  padding: 1rem 1.3rem; border-radius: var(--radius); box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.9rem; max-width: 250px;
}
.hero-figure .ph-badge .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--brass-deep); line-height: 1; }
.hero-figure .ph-badge .txt { font-size: 0.8rem; line-height: 1.35; color: var(--ink-soft); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--ink); color: var(--paper); }
.trustbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.6rem 2.6rem; padding-block: 1.5rem; text-align: center; }
.trustbar .t-item { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.94rem; letter-spacing: 0.02em; color: rgba(250,246,239,.9); }
.trustbar .t-item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brass-soft); }
.trustbar .t-sep { color: rgba(250,246,239,.3); }

/* ---------- Placeholder image blocks ---------- */
.ph {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.35), transparent 60%),
    linear-gradient(160deg, var(--sand), var(--greige) 55%, var(--greige-2));
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(38,32,25,.05) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5;
}
.ph-inner { position: relative; z-index: 1; text-align: center; padding: 1.2rem; }
.ph-inner svg { margin: 0 auto 0.6rem; opacity: .55; }
.ph-chip {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); background: rgba(250,246,239,.7); backdrop-filter: blur(4px);
  padding: 0.4em 0.85em; border-radius: 50px; border: 1px solid rgba(133,106,68,.28);
}
.ph-chip .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
.ph-caption { margin-top: 0.75rem; font-size: 0.82rem; color: var(--muted); letter-spacing: .01em; }

/* before/after */
.beforeafter { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.beforeafter .ph { aspect-ratio: 4/3; }
.ba-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.35em 0.8em; border-radius: 4px;
}
.ba-tag.pred { background: rgba(38,32,25,.82); color: var(--paper); }
.ba-tag.po { background: var(--brass); color: #fff; }

/* ---------- Problem / Qualify list ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.pain-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.pain-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: 1.08rem; line-height: 1.55; color: var(--ink-soft);
  padding: 1.15rem 1.3rem; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.pain-list li .mk { color: var(--brass); flex-shrink: 0; margin-top: 3px; }
.reassure { margin-top: 2rem; padding: 1.6rem 1.8rem; border-left: 3px solid var(--brass); background: var(--paper-2); border-radius: 0 var(--radius) var(--radius) 0; }
.reassure p { font-size: 1.08rem; color: var(--ink); max-width: none; }

.qualify-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-sm); }
.check-list { display: flex; flex-direction: column; gap: 1.25rem; }
.check-list li { display: flex; gap: 1rem; align-items: flex-start; font-size: 1.1rem; line-height: 1.5; }
.check-list .ck { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--paper-2); border: 1px solid var(--brass-soft); color: var(--brass-deep); display: grid; place-items: center; margin-top: 1px; }

/* ---------- Services / pricing ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: stretch; }
.price-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.price-card--featured {
  border: 1.5px solid var(--brass); box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #fff, #fffaf1);
}
.price-card--featured::before {
  content: "★ Najčastejšie"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brass); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.5em 1.1em; border-radius: 50px; white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.pc-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; line-height: 1.15; margin-bottom: 0.9rem; min-height: 2.4em; }
.pc-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.pc-price .from { font-size: 0.8rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 0.35rem; }
.pc-price-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.55rem; line-height: 1.4; }
.pc-list { display: flex; flex-direction: column; gap: 0.7rem; margin: 1.4rem 0; }
.pc-list li { position: relative; padding-left: 1.7rem; font-size: 0.93rem; line-height: 1.45; color: var(--ink-soft); }
.pc-list li strong { color: var(--ink); }
.pc-list .tick { position: absolute; left: 0; top: 0.2em; color: var(--brass-deep); }
.pc-forwhom { font-size: 0.88rem; color: var(--ink-soft); font-style: italic; margin-bottom: 1.2rem; padding-top: 0.9rem; border-top: 1px dashed var(--line-2); }
.pc-forwhom strong { font-style: normal; }
.pc-quote {
  font-family: var(--font-display); font-style: italic; font-size: 1.02rem; line-height: 1.4;
  color: var(--ink); margin: 0.2rem 0 0.9rem; padding-left: 0.9rem; border-left: 2px solid var(--brass-soft);
}
.pc-quote cite { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.78rem; letter-spacing: .04em; color: var(--muted); margin-top: 0.4rem; }
.pc-foot { margin-top: auto; display: flex; flex-direction: column; gap: 1rem; padding-top: 0.4rem; }
.pc-proofrow { padding-top: 0.2rem; }
.services-note {
  margin-top: 1.5rem; font-size: 0.9rem; color: var(--muted); text-align: center; max-width: 720px;
  margin-inline: auto; font-style: italic; line-height: 1.6;
}

/* Premium wide banner (na kľúč) — sits full-width below the 3 cards */
.premium-banner {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1.8rem, 4vw, 4rem);
  background: linear-gradient(140deg, var(--ink), var(--ink-2));
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.9rem, 4vw, 3.4rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.premium-banner::before {
  content: ""; position: absolute; top: -30%; right: -6%; width: 46%; height: 160%;
  background: radial-gradient(ellipse, rgba(169,136,94,.28), transparent 65%); pointer-events: none;
}
.premium-banner > * { position: relative; z-index: 1; }
.pb-info .eyebrow { color: var(--brass-soft); }
.pb-info .eyebrow::before { background: var(--brass-soft); }
.pb-name { color: var(--paper); font-size: clamp(1.9rem, 1.4rem + 1.5vw, 2.7rem); margin: 1rem 0 0.5rem; }
.pb-price { font-family: var(--font-display); font-size: clamp(2.4rem, 2rem + 1.6vw, 3.3rem); font-weight: 600; color: var(--paper); line-height: 1; letter-spacing: -0.02em; }
.pb-price .from { font-size: 0.78rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-soft); display: block; margin-bottom: 0.4rem; }
.pb-note { color: rgba(250,246,239,.72); font-size: 0.96rem; margin-top: 1rem; max-width: 46ch; }
.pb-forwhom { color: rgba(250,246,239,.92); font-style: italic; font-size: 0.96rem; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(250,246,239,.14); }
.pb-forwhom strong { color: var(--paper); font-style: normal; }
.pb-quote { margin: 1.2rem 0 0; }
.pb-foot { margin-top: 1.7rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 1.6rem; }
.pb-foot .proof-link { color: var(--brass-soft); border-color: rgba(201,168,118,.55); }
.pb-foot .proof-link:hover { color: var(--paper); border-color: var(--brass-soft); }
.pb-features { align-self: center; }
.pc-list--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem 1.6rem; margin: 0; }
.premium-banner .pc-list li { color: rgba(250,246,239,.82); font-size: 0.94rem; }
.premium-banner .pc-list li strong { color: var(--paper); }
.premium-banner .pc-list .tick { color: var(--brass-soft); }

/* ---------- Guarantees ---------- */
.guarantee-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1rem; }
.guarantee {
  background: rgba(250,246,239,.05); border: 1px solid rgba(201,168,118,.28);
  border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.6rem); position: relative;
}
.guarantee .g-icon { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--brass-soft); color: var(--brass-soft); display: grid; place-items: center; margin-bottom: 1.4rem; }
.guarantee h3 { color: var(--paper); margin-bottom: 0.8rem; }
.guarantee p { color: rgba(250,246,239,.76); font-size: 1rem; max-width: none; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 2.8rem; }
.step .step-num {
  position: absolute; top: 0; left: 0; font-family: var(--font-display); font-size: 3.4rem; font-weight: 500;
  color: var(--greige); line-height: 0.8;
}
.step::before { content: ""; position: absolute; top: 1.35rem; left: 3.4rem; right: -1.5rem; height: 1px; background: var(--line-2); }
.step:last-child::before { display: none; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.step p { font-size: 0.96rem; color: var(--ink-soft); }
.step .step-price { color: var(--brass-deep); font-weight: 600; font-style: normal; }

/* ---------- Realizácie / gallery ---------- */
.gallery-group { margin-bottom: 3rem; }
.gallery-group:last-of-type { margin-bottom: 0; }
.gg-label { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 1.3rem; }
.gg-label h3 { font-size: 1.4rem; }
.gg-label .gg-count { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; text-align: left; box-shadow: var(--shadow-sm); }
.tile .ph { aspect-ratio: 4/3; border-radius: 0; transition: transform .6s var(--ease); }
.tile:hover .ph { transform: scale(1.05); }
.tile .tile-overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem; background: linear-gradient(0deg, rgba(29,24,19,.78), rgba(29,24,19,.05) 55%, transparent);
  opacity: 0; transition: opacity .4s var(--ease);
}
.tile:hover .tile-overlay, .tile:focus-visible .tile-overlay { opacity: 1; }
.tile .tile-title { color: var(--paper); font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; }
.tile .tile-cta { color: var(--brass-soft); font-size: 0.8rem; font-weight: 600; letter-spacing: .04em; margin-top: 0.25rem; display: inline-flex; gap: .4em; }
.tile:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.gallery-cta { text-align: center; margin-top: 3rem; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.9rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review .stars { color: var(--brass); letter-spacing: 2px; margin-bottom: 1rem; font-size: 0.9rem; }
.review blockquote { font-family: var(--font-display); font-size: 1.28rem; line-height: 1.4; font-style: italic; color: var(--ink); flex-grow: 1; }
.review .r-author { margin-top: 1.4rem; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; color: var(--brass-deep); display: flex; align-items: center; gap: 0.6rem; }
.review .r-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(140deg, var(--sand), var(--greige-2)); display: grid; place-items: center; font-family: var(--font-display); color: var(--ink); font-size: 1rem; flex-shrink: 0; }
.review--placeholder { background: transparent; border-style: dashed; align-items: center; justify-content: center; text-align: center; color: var(--muted); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-figure .ph { aspect-ratio: 4/5; border-radius: var(--radius-lg); }
.about-copy .signature { font-family: var(--font-display); font-style: italic; font-size: 2rem; color: var(--brass-deep); margin-top: 1.6rem; }
.about-copy p { font-size: 1.12rem; line-height: 1.7; }
.about-stats { display: flex; gap: 2.4rem; margin-top: 2rem; }
.about-stats .stat .n { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--ink); line-height: 1; }
.about-stats .stat .l { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; margin-top: 0.3rem; }

/* ---------- Lead magnet ---------- */
.leadmagnet { background: linear-gradient(140deg, var(--ink), var(--ink-2)); color: var(--paper); border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.leadmagnet::before { content: ""; position: absolute; top: -30%; right: -5%; width: 40%; height: 160%; background: radial-gradient(ellipse, rgba(169,136,94,.3), transparent 65%); }
.leadmagnet-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding: clamp(2.4rem, 5vw, 4rem); }
.leadmagnet h2 { color: var(--paper); }
.leadmagnet p { color: rgba(250,246,239,.8); margin-top: 1rem; }
.leadmagnet .lm-book { color: var(--brass-soft); font-weight: 600; }

/* ---------- Forms ---------- */
.form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.form .field {
  width: 100%; padding: 1em 1.2em; border-radius: var(--radius); border: 1px solid var(--line-2);
  background: var(--white); color: var(--ink); transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form .field::placeholder { color: #b3a892; }
.form .field:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(169,136,94,.16); }
.form .field.invalid { border-color: #c0553f; box-shadow: 0 0 0 3px rgba(192,85,63,.12); }
.form .error-msg { font-size: 0.78rem; color: #c0553f; display: none; }
.form .field.invalid ~ .error-msg { display: block; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; text-align: center; }
.leadmagnet .form label { color: rgba(250,246,239,.6); }
.leadmagnet .form-note { color: rgba(250,246,239,.55); }
.form-success { display: none; }
.form.is-success .form-fields { display: none; }
.form.is-success .form-success { display: block; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line-2); }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0.25rem; text-align: left; font-family: var(--font-display); font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
  font-weight: 500; color: var(--ink); transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--brass-deep); }
.faq-icon { flex-shrink: 0; width: 30px; height: 30px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--brass-deep); transition: transform .35s var(--ease); }
.faq-icon::before { width: 15px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 15px; }
.faq-item[aria-expanded="true"] .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { overflow: hidden; height: 0; transition: height .4s var(--ease); }
.faq-a-inner { padding: 0 0.25rem 1.6rem; }
.faq-a-inner p { color: var(--ink-soft); font-size: 1.04rem; }

/* ---------- Final CTA ---------- */
.finalcta { text-align: center; }
.finalcta .container { max-width: 820px; }
.finalcta h2 { font-size: clamp(2.2rem, 1.4rem + 3.4vw, 4rem); }
.finalcta .btn { margin-top: 2rem; }
.finalcta .scarcity { margin-top: 1.6rem; font-size: 0.95rem; color: rgba(250,246,239,.72); }
.finalcta .contact-line { margin-top: 0.6rem; display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1rem; font-size: 0.92rem; }
.merge-field { color: var(--brass-soft); border-bottom: 1px dotted rgba(201,168,118,.5); cursor: help; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-2); color: rgba(250,246,239,.72); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(250,246,239,.1); }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 1.6rem; color: var(--paper); font-weight: 600; }
.footer-brand p { margin-top: 1rem; font-size: 0.96rem; max-width: 42ch; color: rgba(250,246,239,.62); }
.footer-col h4 { color: var(--paper); font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.96rem; color: rgba(250,246,239,.7); transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--brass-soft); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.8rem; font-size: 0.84rem; color: rgba(250,246,239,.45); }
.footer-bottom a:hover { color: var(--brass-soft); }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(29,24,19,.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: flex-start; justify-content: center; padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease);
  overflow-y: auto;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--paper); border-radius: var(--radius-lg); max-width: 880px; width: 100%;
  margin: auto; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  transform: translateY(24px) scale(.98); transition: transform .45s var(--ease); display: none;
}
.modal.active { display: block; }
.modal-overlay.open .modal.active { transform: none; }
.modal-close {
  position: absolute; top: 1.1rem; right: 1.1rem; z-index: 5; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(250,246,239,.9); box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--ink);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.modal-close:hover { background: #fff; transform: rotate(90deg); }
.modal-head { padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.5rem, 4vw, 2.8rem) 0; }
.modal-head .eyebrow { margin-bottom: 0.9rem; }
.modal-head h3 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); }
.modal-body { padding: clamp(1.5rem, 4vw, 2.8rem); }
.modal-ba { margin: 1.6rem 0; }
.modal-ba .ba-caption { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 0.6rem; letter-spacing: .02em; }
.modal-section { margin-top: 1.8rem; }
.modal-section h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-deep); margin-bottom: 0.7rem; }
.modal-section p { color: var(--ink-soft); }
.modal-section ul { display: flex; flex-direction: column; gap: 0.55rem; }
.modal-section ul li { display: flex; gap: 0.6rem; color: var(--ink-soft); }
.modal-section ul li .tick { color: var(--brass-deep); flex-shrink: 0; margin-top: 4px; }
.modal-quote { margin: 1.8rem 0; padding: 1.5rem 1.8rem; background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--brass); border-radius: 0 var(--radius) var(--radius) 0; }
.modal-quote blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; line-height: 1.4; color: var(--ink); }
.modal-quote cite { display: block; font-style: normal; font-size: 0.82rem; color: var(--muted); margin-top: 0.7rem; letter-spacing: .03em; }
.modal-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.placeholder-note { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.76rem; font-style: italic; color: var(--muted); }

/* subtle info banner for [B] client-supplied */
.supply-note {
  display: inline-flex; align-items: center; gap: 0.55em; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-deep);
  background: rgba(201,168,118,.14); border: 1px solid rgba(201,168,118,.35);
  padding: 0.4em 0.85em; border-radius: 50px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-top: clamp(8rem, 14vh, 12rem); padding-bottom: clamp(2.5rem, 5vw, 4.5rem); position: relative; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 0%, rgba(214,199,175,.4), transparent 55%); z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .lead { margin-top: 1.4rem; max-width: 60ch; }
.breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.3rem; letter-spacing: .03em; }
.breadcrumb a:hover { color: var(--brass-deep); }

/* value list (diagnostika) */
.value-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-sm); }
.value-panel .price-tag { display: inline-flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.6rem; }
.value-panel .price-tag .n { font-family: var(--font-display); font-size: 3.4rem; font-weight: 600; color: var(--ink); line-height: 1; }
.value-panel .price-tag .c { font-size: 0.9rem; color: var(--muted); }
.value-list { display: flex; flex-direction: column; gap: 1rem; }
.value-list li { display: flex; gap: 0.85rem; font-size: 1.06rem; color: var(--ink-soft); }
.value-list .tick { color: var(--brass-deep); flex-shrink: 0; margin-top: 4px; }

.callout-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.callout { padding: 1.8rem; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--paper-2); }
.callout .c-icon { color: var(--brass-deep); margin-bottom: 1rem; }
.callout h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.callout p { font-size: 0.98rem; color: var(--ink-soft); }
.callout--anchor { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.callout--anchor h3 { color: var(--paper); }
.callout--anchor p { color: rgba(250,246,239,.76); }
.callout--anchor .c-icon { color: var(--brass-soft); }

.steps-inline { display: flex; flex-direction: column; gap: 1.2rem; counter-reset: n; }
.steps-inline li { display: flex; gap: 1.2rem; align-items: flex-start; }
.steps-inline li .n { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--brass); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; display: grid; place-items: center; }
.steps-inline li .t { padding-top: 5px; font-size: 1.06rem; color: var(--ink-soft); }

/* lead magnet page bullets */
.benefit-list { display: flex; flex-direction: column; gap: 1rem; }
.benefit-list li { display: flex; gap: 0.9rem; font-size: 1.1rem; color: var(--ink-soft); align-items: flex-start; }
.benefit-list .tick { color: var(--brass-deep); flex-shrink: 0; margin-top: 4px; }

.optin-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: var(--shadow-md); }
.optin-card .form-success { text-align: center; padding: 1rem 0; }
.optin-card .form-success .success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--paper-2); border: 1px solid var(--brass-soft); color: var(--brass-deep); display: grid; place-items: center; margin: 0 auto 1.4rem; }
.optin-card .form-success h3 { font-size: 1.8rem; margin-bottom: 0.8rem; }
.optin-card .form-success p { color: var(--ink-soft); margin-inline: auto; margin-bottom: 1.6rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 999; background: var(--ink); color: var(--paper); padding: 0.8em 1.2em; border-radius: 0 0 var(--radius) 0; }
.skip-link:focus { left: 0; }

body.no-scroll { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .step::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav-list, .nav .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { max-width: 420px; }
  .leadmagnet-inner { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .callout-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .premium-banner { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .pc-name { min-height: 0; }
  .pc-list--2col { grid-template-columns: 1fr; }
  .premium-banner .pc-list li.hide-mobile { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .beforeafter { grid-template-columns: 1fr 1fr; }
  .about-stats { gap: 1.6rem; }
  .footer-top { grid-template-columns: 1fr; }
  .trustbar .container { flex-direction: column; gap: 0.5rem; }
  .trustbar .t-sep { display: none; }
  .hero-figure .ph-badge { left: 12px; }
}

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