/* =========================================================
   DEKONOX – style.css  v3
   Inspired by: CozyConer Serif – clean, editorial,
   white background, large serif display, product-first
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --ink:      #1a1410;
  --ink-mid:  #4a4038;
  --ink-soft: #8a7e74;
  --ink-pale: #c0b8b0;
  --bg:       #faf8f5;
  --bg-warm:  #f3efe8;
  --white:    #ffffff;
  --gold:     #b8974a;
  --gold-lt:  #d4b97a;
  --dark:     #141210;
  --dark-2:   #1e1a16;

  /* Fonts */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;
  --mono:   'DM Mono', monospace;

  --nav-h:  72px;
  --ease:   cubic-bezier(.25,.46,.45,.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: rgba(245,240,232,.55);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .06em;
  text-align: center;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(245,240,232,.75); transition: color .2s; }
.topbar a:hover { color: var(--gold-lt); }
.tb-dot { color: rgba(245,240,232,.3); }

/* ── NAV ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid rgba(26,20,16,.08);
  transition: box-shadow .3s;
}
.site-header.shadow { box-shadow: 0 2px 20px rgba(26,20,16,.08); }

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  gap: 24px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-right { justify-content: flex-end; }

.nav-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color .2s;
}
.nav-link:hover { color: var(--ink); }

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.logo-mark { width: 34px; height: 34px; }
.logo-text {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .22em;
  color: var(--ink);
}

.nav-wa {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 18px;
  border: 1px solid rgba(26,20,16,.18);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--ink-mid);
  border-radius: 2px;
  transition: all .2s;
}
.nav-wa:hover { border-color: var(--gold); color: var(--gold); }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}

.mob-nav {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + 42px);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(26,20,16,.08);
  padding: 24px 40px 40px;
  flex-direction: column;
  gap: 20px;
  z-index: 800;
  box-shadow: 0 8px 32px rgba(26,20,16,.1);
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--ink);
}
.mob-nav a:last-child {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h) - 42px);
  max-height: 900px;
  overflow: hidden;
}

/* Left: text */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 40px;
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
  animation: fadeUp .9s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.sect-head.centered .eyebrow::before { display: none; }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
  letter-spacing: .04em;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s, transform .2s;
}
.btn-dark:hover { background: var(--gold); transform: translateY(-1px); }

.btn-text {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-mid);
  letter-spacing: .03em;
  border-bottom: 1px solid var(--ink-pale);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-text:hover { color: var(--ink); border-color: var(--ink); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(26,20,16,.08);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 28px;
}
.stat:first-child { padding-left: 0; }
.stat strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.stat span {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.stat-line {
  width: 1px;
  height: 36px;
  background: rgba(26,20,16,.1);
  flex-shrink: 0;
}

/* Right: mosaic */
.hero-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5px;
  overflow: hidden;
}

.mosaic-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mi { overflow: hidden; }
.mi img { transition: transform 8s ease; }
.mi:hover img { transform: scale(1.04); }

.mi.fill { flex: 1; }
.mi.half { flex: 1; }

.mc2 { margin-top: 40px; }

.mosaic-tag {
  position: absolute;
  bottom: 28px;
  left: 20px;
  background: rgba(10,8,6,.75);
  backdrop-filter: blur(8px);
  color: rgba(245,240,232,.85);
  padding: 12px 18px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mosaic-tag span:first-child { font-size: 18px; font-family: var(--serif); font-weight: 300; }
.mosaic-tag span:last-child { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-lt); }

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(26,20,16,.08);
  border-bottom: 1px solid rgba(26,20,16,.08);
  padding: 16px 0;
  background: var(--white);
}
.mq-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-track span {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--ink-mid);
  text-transform: uppercase;
}
.mq-track em {
  font-style: normal;
  color: var(--gold);
  font-size: 10px;
}

/* ── SECTIONS SHARED ──────────────────────────────────────── */
.sect {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.sect-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 16px;
}
.sect-head.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--ink);
}

.link-arr {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-mid);
  letter-spacing: .03em;
  border-bottom: 1px solid var(--ink-pale);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  align-self: flex-end;
}
.link-arr:hover { color: var(--ink); border-color: var(--ink); }

/* ── CATEGORIES GRID ──────────────────────────────────────── */
.categories { background: var(--bg); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 6px;
}

.cc {
  display: block;
  overflow: hidden;
  border-radius: 3px;
  background: var(--white);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.cc:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,20,16,.09); }

.cc.span2 { grid-column: span 2; }

.cc-img { overflow: hidden; }
.cc.span2 .cc-img { height: 400px; }
.cc:not(.span2) .cc-img { height: 280px; }
.cc-img img { transition: transform .7s var(--ease); }
.cc:hover .cc-img img { transform: scale(1.05); }

.cc-info { padding: 18px 20px 22px; }
.cc-tag {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.cc-info h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 4px;
}
.cc-info p { font-size: 12px; color: var(--ink-soft); }

/* ── FEATURED PRODUCTS ────────────────────────────────────── */
.featured { background: var(--bg-warm); }

.fp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.fp {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.fp:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,20,16,.1); }

.fp.fp-hero { box-shadow: 0 4px 20px rgba(26,20,16,.08); }

.fp-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

.fp-img { height: 340px; overflow: hidden; }
.fp.fp-hero .fp-img { height: 400px; }
.fp-img img { transition: transform .7s var(--ease); }
.fp:hover .fp-img img { transform: scale(1.05); }

.fp-info { padding: 18px 20px 24px; }
.fp-cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.fp-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.fp-price {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink-mid);
  margin-bottom: 14px;
}
.fp-price span { font-size: 11px; color: var(--ink-soft); }
.fp-cta {
  display: inline-flex;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--ink-pale);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.fp-cta:hover { color: var(--gold); border-color: var(--gold); }

/* ── CALCULATOR ───────────────────────────────────────────── */
.calc-sect {
  background: var(--dark);
  padding: 100px 40px;
}

.calc-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.calc-left .eyebrow { color: var(--gold); }
.calc-left .eyebrow::before { background: var(--gold); }
.calc-left h2 { color: rgba(245,240,232,.95); margin-bottom: 20px; }
.calc-left > p { color: rgba(245,240,232,.45); font-size: 15px; line-height: 1.75; margin-bottom: 28px; }

.calc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-list li {
  font-size: 14px;
  color: rgba(245,240,232,.55);
  letter-spacing: .02em;
}

.calc-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,151,74,.18);
  border-radius: 6px;
  padding: 36px;
}

.cf { margin-bottom: 24px; }
.cf label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,240,232,.4);
  margin-bottom: 10px;
}
.cf label strong { color: var(--gold-lt); font-weight: 400; }

.cf select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(184,151,74,.2);
  border-radius: 3px;
  color: rgba(245,240,232,.85);
  font-family: var(--sans);
  font-size: 14px;
  cursor: pointer;
  transition: border-color .2s;
  appearance: none;
}
.cf select:focus { outline: none; border-color: var(--gold); }

.cf input[type=range] {
  width: 100%;
  height: 2px;
  background: rgba(184,151,74,.2);
  border-radius: 1px;
  appearance: none;
  cursor: pointer;
  margin-top: 4px;
}
.cf input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--dark);
  box-shadow: 0 0 0 2px var(--gold);
  cursor: pointer;
}

.calc-out {
  border-top: 1px solid rgba(184,151,74,.1);
  padding-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.co-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.co-row span { font-size: 13px; color: rgba(245,240,232,.45); }
.co-row b { font-family: var(--mono); font-size: 14px; font-weight: 400; color: rgba(245,240,232,.8); }
.co-row.co-total { border-top: 1px solid rgba(184,151,74,.15); margin-top: 4px; padding-top: 12px; }
.co-row.co-total span { font-size: 14px; color: rgba(245,240,232,.7); font-weight: 400; }
.co-row.co-total b { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--gold-lt); }

.calc-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: #25D366;
  color: white;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .04em;
  border-radius: 3px;
  transition: background .2s, transform .2s;
}
.calc-wa:hover { background: #1db956; transform: translateY(-1px); }

/* ── WHY ──────────────────────────────────────────────────── */
.why-sect { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.wc {
  padding: 44px 36px;
  background: var(--bg);
  transition: background .25s;
}
.wc:hover { background: var(--bg-warm); }

.wc-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--ink-pale);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.wc h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.wc p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ── PAKETI PREVIEW ───────────────────────────────────────── */
.paketi-prev { background: var(--bg-warm); }

.pk-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 8px;
}

.pk {
  display: block;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.pk:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,20,16,.1); }

.pk-img { overflow: hidden; }
.pk .pk-img { height: 280px; }
.pk.pk-big .pk-img { height: 340px; }
.pk-img img { transition: transform .7s var(--ease); }
.pk:hover .pk-img img { transform: scale(1.05); }

.pk-info { padding: 24px; }
.pk-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,151,74,.1);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.pk-info h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.pk-info p { font-size: 13px; color: var(--ink-soft); margin-bottom: 12px; }
.pk-price { font-size: 14px; color: var(--ink-soft); }
.pk-price strong { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--gold); }

/* ── BLOG PREVIEW ─────────────────────────────────────────── */
.blog-prev { background: var(--white); }

.bl-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
}

.bl {
  display: block;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s var(--ease);
}
.bl:hover { transform: translateY(-3px); }

.bl-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bl-img { overflow: hidden; }
.bl.bl-big .bl-img { height: 340px; }
.bl:not(.bl-big) .bl-img { height: 200px; }
.bl-img img { transition: transform .7s var(--ease); }
.bl:hover .bl-img img { transform: scale(1.05); }

.bl-info { padding: 24px; }
.bl-cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.bl-info h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
}
.bl:not(.bl-big) .bl-info h3 { font-size: 17px; }
.bl-info p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 12px; }
.bl-read { font-size: 12px; color: var(--gold); letter-spacing: .05em; }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: var(--dark-2);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,151,74,.07) 0%, transparent 70%);
  top: 50%; left: 30%;
  transform: translate(-50%,-50%);
}
.cta-band-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta-band-inner h2 { color: rgba(245,240,232,.92); margin: 16px 0 48px; }
.cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: #25D366;
  color: white;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .04em;
  border-radius: 3px;
  transition: background .2s, transform .2s;
}
.cta-wa:hover { background: #1db956; transform: translateY(-2px); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: 80px 40px 0;
  border-top: 1px solid rgba(184,151,74,.1);
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
}

.fg-brand .site-logo { margin-bottom: 20px; }
.fg-brand .logo-text { color: rgba(245,240,232,.9); }
.fg-brand p {
  font-size: 14px;
  color: rgba(245,240,232,.35);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}
.fg-socials { display: flex; gap: 20px; }
.fg-socials a {
  font-size: 13px;
  color: rgba(245,240,232,.35);
  transition: color .2s;
}
.fg-socials a:hover { color: var(--gold-lt); }

.fg-col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,240,232,.25);
  margin-bottom: 20px;
}
.fg-col a {
  display: block;
  font-size: 14px;
  color: rgba(245,240,232,.45);
  margin-bottom: 10px;
  transition: color .2s;
}
.fg-col a:hover { color: rgba(245,240,232,.9); }

.footer-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(245,240,232,.2);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── INNER PAGES ──────────────────────────────────────────── */
.page-inner .site-header { position: sticky; }

.page-hero {
  background: var(--dark);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,151,74,.06), transparent 60%);
}
.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: rgba(245,240,232,.95);
  margin: 16px 0 12px;
}
.page-hero p { font-size: 16px; color: rgba(245,240,232,.45); max-width: 520px; }

/* CATALOG */
.catalog-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 40px;
}
.filter-bar { display: flex; gap: 8px; margin-bottom: 44px; flex-wrap: wrap; }
.filter-btn {
  padding: 7px 18px;
  border: 1px solid rgba(26,20,16,.15);
  background: transparent;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  cursor: pointer;
  border-radius: 2px;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--bg); }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 6px;
}

.ci {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.ci:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,20,16,.1); }

.ci-img { height: 280px; overflow: hidden; }
.ci-img img { transition: transform .6s var(--ease); }
.ci:hover .ci-img img { transform: scale(1.06); }

.ci-body { padding: 14px 16px 18px; }
.ci-code { font-family: var(--mono); font-size: 10px; color: var(--gold); display: block; margin-bottom: 3px; }
.ci-name { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--ink); margin-bottom: 2px; }
.ci-dim { font-size: 11px; color: var(--ink-soft); margin-bottom: 8px; }
.ci-price { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ink); }
.ci-price span { font-family: var(--sans); font-size: 11px; color: var(--ink-soft); }

/* PAKETI PAGE */
.paketi-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 40px;
}
.paketi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }

.pk-page {
  background: var(--white);
  border: 1px solid rgba(26,20,16,.06);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.pk-page:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(26,20,16,.08); }
.pk-page.pk-featured { border: 2px solid var(--gold); }

.pk-page-img { height: 280px; overflow: hidden; }
.pk-page-img img { transition: transform .6s var(--ease); }
.pk-page:hover .pk-page-img img { transform: scale(1.04); }

.pk-page-body { padding: 28px; }
.pk-page-body h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; margin-bottom: 8px; }
.pk-page-body .pk-desc { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; line-height: 1.65; }

.pk-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(26,20,16,.06); }
.pk-row-item { display: flex; justify-content: space-between; font-size: 13px; }
.pk-row-item span:first-child { color: var(--ink-soft); }
.pk-row-item span:last-child { font-family: var(--mono); color: var(--ink); }
.pk-row-item.pk-total span:first-child { color: var(--ink); font-weight: 500; }
.pk-row-item.pk-total span:last-child { font-family: var(--serif); font-size: 22px; color: var(--gold); }

.pk-page-wa {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 13px; background: #25D366; color: white;
  font-size: 14px; font-weight: 400; border-radius: 3px; transition: background .2s;
}
.pk-page-wa:hover { background: #1db956; }

/* BLOG PAGE */
.blog-wrap { max-width: 1400px; margin: 0 auto; padding: 72px 40px; }
.blog-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.bp {
  display: block;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s;
}
.bp:hover { transform: translateY(-4px); }
.bp-img { height: 240px; overflow: hidden; }
.bp-img img { transition: transform .6s var(--ease); }
.bp:hover .bp-img img { transform: scale(1.05); }
.bp-body { padding: 24px; }
.bp-cat { font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.bp-body h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.bp-body p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 16px; }
.bp-read { font-size: 12px; color: var(--gold); }

/* KONTAKT PAGE */
.kontakt-wrap { max-width: 1400px; margin: 0 auto; padding: 72px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.kl h3 { font-family: var(--serif); font-size: 32px; font-weight: 400; margin-bottom: 16px; }
.kl p { font-size: 15px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 36px; }
.k-channels { display: flex; flex-direction: column; gap: 12px; }

.kch {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; background: var(--white);
  border: 1px solid rgba(26,20,16,.06); border-radius: 4px; transition: border-color .2s;
}
.kch:hover { border-color: var(--gold); }
.kch-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(184,151,74,.1); color: var(--gold); flex-shrink: 0; }
.kch-text strong { display: block; font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.kch-text span { font-size: 13px; color: var(--ink-soft); }

.kf { background: var(--white); border: 1px solid rgba(26,20,16,.06); border-radius: 6px; padding: 44px; }
.kf h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; margin-bottom: 28px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 11px; font-weight: 400; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 11px 14px;
  border: 1px solid rgba(26,20,16,.12); border-radius: 3px;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  background: var(--bg); transition: border-color .2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-submit-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: #25D366; color: white;
  font-size: 14px; font-weight: 400; border: none; border-radius: 3px;
  cursor: pointer; transition: background .2s;
}
.form-submit-btn:hover { background: #1db956; }

/* ── DARK HERO ────────────────────────────────────────────── */
.hero-dark {
  background: var(--dark);
  position: relative;
}
.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0 50% 0 0;
  background: radial-gradient(ellipse at 15% 60%, rgba(184,151,74,.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.hero-dark .hero-text {
  position: relative;
  z-index: 2;
}
.hero-dark .eyebrow { color: var(--gold-lt); }
.hero-dark .eyebrow::before { background: var(--gold-lt); }
.hero-dark .hero h1,
.hero-dark h1 { color: rgba(245,240,232,.96); }
.hero-dark h1 em { color: var(--gold); }
.hero-dark .hero-sub { color: rgba(245,240,232,.42); }
.hero-dark .btn-dark {
  background: var(--gold);
  color: var(--dark);
  font-weight: 500;
}
.hero-dark .btn-dark:hover { background: var(--gold-lt); transform: translateY(-2px); }
.hero-dark .btn-text { color: rgba(245,240,232,.5); border-color: rgba(245,240,232,.18); }
.hero-dark .btn-text:hover { color: rgba(245,240,232,.9); border-color: rgba(245,240,232,.55); }
.hero-dark .hero-stats { border-top-color: rgba(245,240,232,.08); }
.hero-dark .stat strong { color: rgba(245,240,232,.96); }
.hero-dark .stat span { color: rgba(245,240,232,.38); }
.hero-dark .stat-line { background: rgba(245,240,232,.1); }
.hero-dark .hero-mosaic { position: relative; }
.hero-dark .hero-mosaic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 22%);
  pointer-events: none;
  z-index: 2;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-sect {
  background: var(--bg-warm);
  padding-bottom: 80px;
}
.how-steps {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.hs {
  background: var(--white);
  border-radius: 8px;
  padding: 52px 44px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(26,20,16,.05);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.hs:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,20,16,.09); }
.hs-num {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 300;
  color: var(--gold);
  opacity: .18;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.hs h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 14px;
}
.hs p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 32px;
}
.hs-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--gold);
}
.hs-arrow-line {
  display: block;
  width: 1px;
  height: 0;
  background: var(--gold);
  opacity: .3;
}
.hs-arrow-head {
  font-size: 28px;
  opacity: .45;
}

.btn-wa-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #25D366;
  color: white;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .05em;
  border-radius: 3px;
  transition: background .2s, transform .2s;
}
.btn-wa-green:hover { background: #1db956; transform: translateY(-1px); }

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews-sect { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.rv {
  background: var(--white);
  border-radius: 6px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 1px 8px rgba(26,20,16,.04);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.rv:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(26,20,16,.09); }
.rv-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 3px;
}
.rv p {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
}
.rv-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 18px;
  border-top: 1px solid rgba(26,20,16,.07);
}
.rv-author strong { font-size: 14px; font-weight: 500; color: var(--ink); font-style: normal; }
.rv-author span { font-size: 12px; color: var(--ink-soft); letter-spacing: .06em; }

/* ── REVEAL ANIMATION ─────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   MODERN UPGRADE v2 — progress, hero bg, overlay cats,
   fp hover, noise, cursor, clip reveal
   ═══════════════════════════════════════════════════════════ */

/* ── SCROLL PROGRESS BAR ──────────────────────────────────── */
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  top: auto;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 100%);
  z-index: 10;
  pointer-events: none;
  transition: width .06s linear;
}

/* ── HERO BACKGROUND TEXT ─────────────────────────────────── */
.hero-bg-text {
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(68px, 11vw, 160px);
  font-weight: 600;
  letter-spacing: .08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,151,74,.08);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  bottom: 20px;
  left: -2px;
  z-index: 0;
  line-height: 1;
}
.hero-dark .hero-text > *:not(.hero-bg-text) {
  position: relative;
  z-index: 1;
}

/* ── CATEGORIES — OVERLAY STYLE ───────────────────────────── */
.cc {
  position: relative;
  background: var(--dark);
}
.cc:hover { transform: none !important; box-shadow: none !important; }
.cc::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184,151,74,0);
  border-radius: 3px;
  transition: border-color .4s;
  pointer-events: none;
  z-index: 3;
}
.cc:hover::after { border-color: rgba(184,151,74,.38); }

.cc.span2 { height: 440px; }
.cc:not(.span2) { height: 308px; }

.cc-img {
  position: absolute !important;
  inset: 0 !important;
  height: auto !important;
  overflow: hidden;
}
.cc-img img {
  height: 100% !important;
  transition: transform 1.1s var(--ease) !important;
}
.cc:hover .cc-img img { transform: scale(1.08) !important; }

.cc-info {
  position: absolute !important;
  bottom: 0; left: 0; right: 0;
  padding: 72px 22px 20px !important;
  background: linear-gradient(to top, rgba(6,4,2,.93) 0%, rgba(6,4,2,.42) 58%, transparent 100%) !important;
  z-index: 2;
  transition: padding-bottom .35s var(--ease);
}
.cc:hover .cc-info { padding-bottom: 28px !important; }
.cc-tag { color: var(--gold-lt) !important; margin-bottom: 8px !important; }
.cc-info h3 { color: rgba(245,240,232,.96) !important; margin-bottom: 4px !important; }
.cc-info p { color: rgba(245,240,232,.5) !important; }

.cc-arrow {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .08em;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s .05s var(--ease), transform .3s .05s var(--ease);
}
.cc:hover .cc-arrow { opacity: 1; transform: translateY(0); }

/* ── FEATURED PRODUCTS — SLIDE-UP HOVER CTA ──────────────── */
.fp-wa-hover {
  position: absolute;
  bottom: -56px;
  left: 0; right: 0;
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  padding: 15px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: bottom .38s var(--ease);
  z-index: 5;
}
.fp:hover .fp-wa-hover { bottom: 0; }

/* ── GRAIN / NOISE TEXTURE ────────────────────────────────── */
.hero-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
  opacity: .04;
  pointer-events: none;
  z-index: 0;
}
.calc-sect { position: relative; }
.calc-sect::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
  opacity: .04;
  pointer-events: none;
  z-index: 0;
}
.calc-inner { position: relative; z-index: 1; }
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
  opacity: .04;
  pointer-events: none;
  z-index: 0;
}
.cta-band-inner { position: relative; z-index: 1; }
.site-footer { position: relative; }
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px;
  opacity: .035;
  pointer-events: none;
  z-index: 0;
}
.footer-grid, .footer-bar { position: relative; z-index: 1; }


/* ── CLIP-PATH HEADING REVEAL ─────────────────────────────── */
[data-reveal="heading"] {
  opacity: 1 !important;
  transform: none !important;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .95s var(--ease) !important;
  transition-delay: var(--delay, 0ms) !important;
}
[data-reveal="heading"].revealed { clip-path: inset(0 0 0% 0); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cc.span2 { grid-column: span 1; height: 360px; }
  .fp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr; max-width: 460px; }
  .hs-divider { transform: rotate(90deg); height: 48px; }
  .hs-arrow-line { display: none; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .nav-left, .nav-right .nav-link, .nav-wa { display: none; }
  .burger { display: flex; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-right { gap: 16px; }

  .hero { grid-template-columns: 1fr; min-height: auto; max-height: none; }
  .hero-text { padding: 60px 24px 40px; max-width: 100%; }
  .hero-mosaic { height: 50vw; min-height: 280px; }

  .sect { padding: 72px 24px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .fp-grid { grid-template-columns: repeat(2, 1fr); }
  .pk-row { grid-template-columns: 1fr; }
  .bl-row { grid-template-columns: 1fr; }
  .calc-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-wrap { grid-template-columns: 1fr; gap: 48px; }
  .blog-page-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .calc-sect { padding: 72px 24px; }
  .cta-band { padding: 72px 24px; }
  .page-hero { padding: 60px 24px; }
  .catalog-wrap, .paketi-wrap, .blog-wrap { padding: 60px 24px; }
}

@media (max-width: 600px) {
  .hero-mosaic { display: none; }
  .hero-text { padding: 48px 20px 48px; }
  .hero h1 { font-size: clamp(44px, 12vw, 64px); }
  .hero-bg-text { font-size: 18vw; }
  .cat-grid { grid-template-columns: 1fr; }
  .cc.span2, .cc:not(.span2) { height: 260px; }
  .fp-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .blog-page-grid { grid-template-columns: 1fr; }
}

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--dark);
  color: var(--bg-warm);
  padding: 100px 80px 80px;
  text-align: center;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--gold); margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p { color: rgba(245,240,232,.6); font-size: 16px; }

/* ── CATALOG PAGE ──────────────────────────────────────────── */
.catalog-wrap { max-width: 1400px; margin: 0 auto; padding: 80px 60px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.filter-btn {
  padding: 8px 18px; border-radius: 100px;
  border: 1.5px solid var(--bg-warm);
  background: transparent; color: var(--ink-mid);
  font-family: var(--sans); font-size: 13px; cursor: pointer;
  transition: all .2s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--bg-warm); border-color: var(--ink); }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.ci { background: var(--white); border-radius: 6px; overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.ci:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,20,16,.12); }
.ci-img { aspect-ratio: 3/4; background: var(--bg-warm); }
.ci-img img { width: 100%; height: 100%; object-fit: cover; }
.ci-body { padding: 16px; }
.ci-code { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); display: block; margin-bottom: 6px; }
.ci-name { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.ci-dim { font-size: 12px; color: var(--ink-soft); margin-bottom: 8px; }
.ci-price { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); }
.ci-price span { font-size: 12px; font-family: var(--sans); font-weight: 400; color: var(--ink-soft); }

/* ── PAKETI PAGE ───────────────────────────────────────────── */
.paketi-wrap { max-width: 1400px; margin: 0 auto; padding: 80px 60px; }
.paketi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.pk-page { background: var(--white); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s var(--ease); }
.pk-page:hover { box-shadow: 0 20px 60px rgba(26,20,16,.1); }
.pk-page.pk-featured { border: 2px solid var(--gold); }
.pk-page-img { aspect-ratio: 16/9; background: var(--bg-warm); overflow: hidden; }
.pk-page-img img { width: 100%; height: 100%; object-fit: cover; }
.pk-page-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.pk-tag { display: inline-block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); border-radius: 100px; padding: 3px 10px; margin-bottom: 16px; }
.pk-page-body h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; margin-bottom: 12px; }
.pk-desc { color: var(--ink-soft); font-size: 14px; margin-bottom: 24px; }
.pk-rows { border-top: 1px solid var(--bg-warm); margin-bottom: 24px; }
.pk-row-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--bg-warm); font-size: 14px; color: var(--ink-mid); }
.pk-row-item.pk-total { font-weight: 600; color: var(--ink); font-size: 15px; }
.pk-page-wa {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  background: #25D366; color: #fff; border-radius: 6px;
  padding: 14px 24px; font-size: 14px; font-weight: 600;
  margin-top: auto; transition: background .2s var(--ease);
}
.pk-page-wa:hover { background: #1ebe5b; }

/* ── BLOG PAGE ─────────────────────────────────────────────── */
.blog-wrap { max-width: 1400px; margin: 0 auto; padding: 80px 60px; }
.blog-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.bp { display: flex; flex-direction: column; background: var(--white); border-radius: 8px; overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.bp:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(26,20,16,.1); }
.bp-img { aspect-ratio: 16/10; background: var(--bg-warm); overflow: hidden; }
.bp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.bp:hover .bp-img img { transform: scale(1.04); }
.bp-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.bp-cat { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); display: block; margin-bottom: 10px; }
.bp-body h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 12px; line-height: 1.35; }
.bp-body p { font-size: 14px; color: var(--ink-soft); flex: 1; margin-bottom: 20px; }
.bp-read { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: .02em; }

/* ── KONTAKT PAGE ──────────────────────────────────────────── */
.kontakt-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 60px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.kontakt-channels { display: flex; flex-direction: column; gap: 16px; }
.kch {
  display: flex; align-items: center; gap: 20px;
  background: var(--white); border-radius: 8px;
  padding: 24px 28px; border: 1.5px solid var(--bg-warm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.kch:hover { border-color: var(--ink-pale); box-shadow: 0 8px 24px rgba(26,20,16,.08); }
.kch-wa { border-color: rgba(37,211,102,.3); }
.kch-wa:hover { border-color: #25D366; }
.kch-icon { color: var(--ink-mid); flex-shrink: 0; }
.kch-wa .kch-icon { color: #25D366; }
.kch-body { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.kch-body strong { font-size: 15px; font-weight: 600; color: var(--ink); }
.kch-body span { font-size: 13px; color: var(--ink-soft); }
.kch-body em { font-size: 13px; color: var(--ink-mid); font-style: normal; font-weight: 500; }
.kch-arr { color: var(--ink-pale); font-size: 20px; transition: transform .2s var(--ease); }
.kch:hover .kch-arr { transform: translateX(4px); color: var(--ink-mid); }
.kch-info { cursor: default; }
.kch-info:hover { border-color: var(--bg-warm); box-shadow: none; }

.kontakt-form-wrap h2 { font-family: var(--serif); font-size: 36px; font-weight: 300; margin: 8px 0 12px; }
.kform { display: flex; flex-direction: column; gap: 20px; }
.kf-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kf-group { display: flex; flex-direction: column; gap: 8px; }
.kf-group label { font-size: 13px; font-weight: 500; color: var(--ink-mid); }
.kf-group input,
.kf-group select,
.kf-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--bg-warm);
  border-radius: 6px;
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  transition: border-color .2s var(--ease);
  outline: none;
}
.kf-group input:focus,
.kf-group select:focus,
.kf-group textarea:focus { border-color: var(--ink); }
.kf-group textarea { resize: vertical; }
.kf-submit {
  padding: 16px 32px;
  background: var(--ink);
  color: var(--bg-warm);
  border: none;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.kf-submit:hover { background: var(--ink-mid); }

@media (max-width: 900px) {
  .kontakt-wrap { grid-template-columns: 1fr; gap: 48px; }
  .kf-row-2 { grid-template-columns: 1fr; }
  .paketi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero { padding: 80px 24px 60px; }
  .catalog-wrap, .paketi-wrap, .blog-wrap { padding: 60px 24px; }
  .blog-page-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-wrap { padding: 60px 24px; }
}
@media (max-width: 600px) {
  .blog-page-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
