
:root {
  --white: #ffffff; --off: #F9F7F4; --cream: #F2EFE8;
  --gold: #C8A84B; --gold-dark: #8B6914; --gold-light: #F5E9C4;
  --black: #0A0A0A; --ink: #111111; --muted: #888880;
  --border: #E8E4DC; --border-dark: #D4CFC4;
  --cellmind-container-max: 1280px;
  --cellmind-container-narrow: 760px;
  --cellmind-container-padding: clamp(20px, 4vw, 48px);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--ink); font-family: 'DM Sans', sans-serif; overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0; height: 64px; background: #ffffff; border-bottom: 0.5px solid var(--border); }
nav > .cellmind-container--bar { height: 64px; }
body { padding-top: 64px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo .cell { background: var(--gold); color: var(--black); font-family: 'DM Sans'; font-weight: 500; font-size: 15px; padding: 2px 7px 3px; letter-spacing: -0.3px; }
.nav-logo .mind { color: var(--ink); font-family: 'DM Sans'; font-weight: 500; font-size: 15px; letter-spacing: -0.3px; padding-left: 1px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 13px; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { font-size: 12px; font-weight: 500; color: var(--gold-dark); border: 0.5px solid var(--gold); padding: 8px 18px; text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: all 0.2s; }
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* HERO — editorial split, nema viška prostora */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  min-height: 640px;
  padding-top: 0;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px 56px 56px 64px;
  background: var(--white);
  border-right: 0.5px solid var(--border);
}
.hero-label {
  font-size: 11px; letter-spacing: 0.28em; color: var(--gold-dark);
  text-transform: uppercase; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 0.8s 0.1s forwards;
}
.hero-label::before { content: ''; width: 32px; height: 0.5px; background: var(--gold); }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 4.8vw, 76px); font-weight: 900;
  color: var(--ink); line-height: 0.95; letter-spacing: -3px;
  margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s 0.25s forwards;
}
.hero-h1 em { font-style: italic; color: var(--gold-dark); display: block; margin-top: 4px; }
.hero-sub {
  font-size: 15px; font-weight: 300; color: var(--muted);
  line-height: 1.75; max-width: 360px; margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center;
  opacity: 0; animation: fadeUp 0.8s 0.55s forwards;
}
.btn-primary { background: var(--ink); color: var(--white); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 32px; text-decoration: none; transition: all 0.2s; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-ghost { font-size: 13px; color: var(--muted); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.btn-ghost:hover { color: var(--ink); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }
.hero-stats {
  display: flex; gap: 0;
  border-top: 0.5px solid var(--border); margin-top: 40px; padding-top: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; padding-right: 24px; margin-right: 24px; border-right: 0.5px solid var(--border); }
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -0.5px; }
.hero-stat-lbl { font-size: 9px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; }

/* HERO RIGHT — slika */
.hero-right {
  position: relative; overflow: hidden; background: var(--off);
  opacity: 0; animation: fadeUp 0.9s 0.3s forwards;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
}
.hero-overlay-tl {
  position: absolute; top: 28px; left: 28px;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); background: rgba(255,255,255,0.92);
  padding: 6px 14px; border: 0.5px solid var(--border);
}
.hero-overlay-tr {
  position: absolute; top: 28px; right: 28px;
  background: var(--gold-light); padding: 10px 16px;
  border: 0.5px solid var(--gold); text-align: center;
}
.hero-overlay-tr-val { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--ink); }
.hero-overlay-tr-lbl { font-size: 7px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); }
.hero-overlay-bl {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--black); padding: 14px 20px;
}
.hero-overlay-bl-name { font-size: 11px; letter-spacing: 0.1em; color: var(--white); text-transform: uppercase; font-weight: 500; }
.hero-overlay-bl-sub { font-size: 9px; color: var(--gold); letter-spacing: 0.08em; margin-top: 4px; }
.hero-overlay-dots {
  position: absolute; bottom: 34px; right: 28px; display: flex; gap: 6px;
}
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border-dark); }
.hero-dot.on { background: var(--gold); }

/* STRIP */
.editorial-strip { background: var(--ink); padding: 18px 48px; display: flex; gap: 48px; align-items: center; overflow: hidden; }
.strip-item { display: flex; align-items: center; gap: 12px; white-space: nowrap; flex-shrink: 0; }
.strip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.strip-text { font-size: 11px; letter-spacing: 0.2em; color: #555; text-transform: uppercase; }
.strip-text span { color: var(--gold); }

/* SHARED — site container */
.cellmind-container {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--cellmind-container-max);
  margin-inline: auto;
  padding-inline: var(--cellmind-container-padding);
}

.cellmind-container--narrow {
  max-width: var(--cellmind-container-narrow);
}

.cellmind-container--bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cellmind-page-main {
  padding-block: 96px;
}

.section-wrap { max-width: var(--cellmind-container-max); margin: 0 auto; padding: 96px var(--cellmind-container-padding); }
.section-tag { font-size: 10px; letter-spacing: 0.28em; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.section-tag::before { content: ''; width: 24px; height: 0.5px; background: var(--gold); }
.section-h2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: var(--ink); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 24px; }
.section-h2 em { font-style: italic; color: var(--gold-dark); }

/* BRAND STATEMENT */
.statement-bg { background: var(--ink); padding: 96px 48px; }
.statement-inner { max-width: var(--cellmind-container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.statement-label { font-size: 10px; letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.statement-label::before { content: ''; width: 24px; height: 0.5px; background: var(--gold-dark); }
.statement-h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 46px); font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -1.5px; }
.statement-h2 em { font-style: italic; color: var(--gold); }
.statement-right { display: flex; flex-direction: column; gap: 32px; }
.statement-point { display: flex; gap: 16px; }
.statement-point-num { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--gold-dark); min-width: 24px; padding-top: 1px; }
.statement-point-title { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.statement-point-desc { font-size: 13px; font-weight: 300; color: #666; line-height: 1.7; }

/* CATEGORIES */
.cat-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--border); border: 0.5px solid var(--border); margin-top: 48px; }
.cat-card { background: var(--white); padding: 40px 32px; transition: background 0.2s; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.cat-card:hover { background: var(--off); }
.cat-num { font-size: 10px; letter-spacing: 0.2em; color: var(--border-dark); text-transform: uppercase; margin-bottom: 20px; }
.cat-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.3px; }
.cat-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.8; flex: 1; }
.cat-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 24px; padding-top: 20px; border-top: 0.5px solid var(--border); }
.cat-meta-pill { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); background: var(--gold-light); padding: 3px 8px; }
.cat-link { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin-top: 20px; transition: gap 0.2s; }
.cat-card:hover .cat-link { gap: 10px; }

/* NUMBERS */
.numbers-bg { background: var(--cream); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.numbers-inner { max-width: var(--cellmind-container-max); margin: 0 auto; padding: 80px var(--cellmind-container-padding); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 0.5px solid var(--border); margin-top: 48px; }
.number-item { padding: 40px 32px; border-right: 0.5px solid var(--border); display: flex; flex-direction: column; }
.number-item:last-child { border-right: none; }
.number-val { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 900; color: var(--ink); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
.number-lbl { font-size: 10px; letter-spacing: 0.18em; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 12px; }
.number-desc { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.7; margin-top: auto; padding-top: 16px; border-top: 0.5px solid var(--border); }

/* HOW */
.how-steps { display: flex; flex-direction: column; margin-top: 48px; }
.how-step { display: flex; gap: 32px; align-items: flex-start; padding: 28px 0; border-bottom: 0.5px solid var(--border); }
.how-step:last-child { border-bottom: none; }
.step-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; color: var(--border-dark); min-width: 48px; line-height: 1; }
.step-title { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.step-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* FAQ */
.faq-bg { background: var(--off); border-top: 0.5px solid var(--border); padding: 96px 0; }
.faq-inner { max-width: var(--cellmind-container-max); margin: 0 auto; padding: 0 var(--cellmind-container-padding); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; margin-top: 48px; }
.faq-item { padding: 24px 0; border-bottom: 0.5px solid var(--border); }
.faq-q { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 10px; line-height: 1.4; }
.faq-a { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* CTA */
.cta-band { background: var(--ink); padding: 96px 48px; text-align: center; }
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-tag { font-size: 10px; letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.cta-tag::before, .cta-tag::after { content: ''; width: 32px; height: 0.5px; background: var(--gold-dark); }
.cta-h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--white); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; }
.cta-h2 em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 15px; font-weight: 300; color: #666; line-height: 1.7; margin-bottom: 40px; }
.btn-gold { background: var(--gold); color: var(--black); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 16px 40px; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-gold:hover { background: var(--white); }

/* FOOTER */
.disclaimer-bar { background: var(--off); border-top: 0.5px solid var(--border); padding: 20px 48px; }
.disclaimer-text { font-size: 10px; color: #bbb; line-height: 1.7; max-width: var(--cellmind-container-max); margin: 0 auto; text-align: center; padding-inline: var(--cellmind-container-padding); }
footer { background: var(--ink); padding: 64px var(--cellmind-container-padding) 32px; }
.footer-inner { max-width: var(--cellmind-container-max); margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; }
.footer-logo .cell { background: var(--gold); color: var(--black); font-family: 'DM Sans'; font-weight: 500; font-size: 15px; padding: 2px 7px 3px; }
.footer-logo .mind { color: var(--white); font-family: 'DM Sans'; font-weight: 500; font-size: 15px; padding-left: 1px; }
.footer-tagline { font-size: 11px; letter-spacing: 0.12em; color: #444; margin-top: 8px; text-transform: uppercase; }
.footer-cols { display: flex; gap: 64px; }
.footer-col-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #444; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; font-weight: 300; color: #666; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 0.5px solid #1e1e1e; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 11px; color: #333; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 11px; color: #333; text-decoration: none; }
.footer-legal a:hover { color: var(--gold); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
