/* =====================================================================
   akurban.sk — Inner page components
   (service detail + blog post). Loads AFTER theme.css.
   ===================================================================== */

/* ===== PAGE HEADER (dark band under fixed nav) ===== */
.aku-page-header {
  background: var(--charcoal-deep);
  position: relative;
  overflow: hidden;
  padding: calc(72px + 4.5rem) var(--pad) 4rem;
}
.aku-page-header::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 420px; height: 420px;
  border: 60px solid rgba(200,16,46,0.05); border-radius: 50%;
}
.aku-page-header__inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 2; }

.aku-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 1.6rem;
  font-family: var(--sans); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.aku-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.aku-breadcrumb a:hover { color: var(--white); }
.aku-breadcrumb .sep { color: rgba(255,255,255,0.25); }
.aku-breadcrumb .current { color: var(--red); }

.aku-page-header .eyebrow { margin-bottom: 1rem; display: block; }
.aku-page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 1.2rem; max-width: 16ch;
}
.aku-page-header .lead {
  font-family: var(--sans); font-size: 1.08rem; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.66); max-width: 60ch; text-wrap: pretty;
}

/* ===== PAGE BODY: content + sticky sidebar ===== */
.aku-page-body { background: var(--white); padding: 4.5rem var(--pad) 5.5rem; }
.aku-page-body__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 4rem; align-items: start;
}

/* ===== TABLE OF CONTENTS ===== */
.aku-toc {
  background: var(--off-white); border-left: 3px solid var(--red);
  padding: 1.2rem 1.6rem; margin-bottom: 2rem;
}
.aku-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.aku-toc a {
  color: var(--charcoal); text-decoration: none; font-size: 0.95rem; font-weight: 500;
  transition: color 0.2s;
}
.aku-toc a:hover { color: var(--red); }

/* ===== PROSE (rich article/content typography) ===== */
.aku-prose { font-family: var(--sans); color: var(--text-body); }
.aku-prose > * + * { margin-top: 1.4rem; }
.aku-prose h2 {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 700; line-height: 1.25;
  color: var(--charcoal); margin-top: 3rem; margin-bottom: 1rem; letter-spacing: -0.01em;
}
.aku-prose h2:first-child { margin-top: 0; }
.aku-prose h3 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  color: var(--charcoal); margin-top: 2.2rem;
}
.aku-prose p { font-size: 1rem; line-height: 1.85; text-wrap: pretty; }
.aku-prose strong { color: var(--charcoal); font-weight: 600; }
.aku-prose a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.aku-prose ul, .aku-prose ol { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 0.6rem; }
.aku-prose ul li { position: relative; padding-left: 1.6rem; line-height: 1.7; }
.aku-prose ul li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; background: var(--red);
}
.aku-prose ol { counter-reset: li; }
.aku-prose ol li { position: relative; padding-left: 2.2rem; line-height: 1.7; counter-increment: li; }
.aku-prose ol li::before {
  content: counter(li,decimal-leading-zero); position: absolute; left: 0; top: 0;
  font-family: var(--serif); font-size: 0.95rem; font-weight: 700; color: var(--red);
}
.aku-prose blockquote {
  border-left: 3px solid var(--red); padding: 0.4rem 0 0.4rem 1.5rem; margin: 2rem 0;
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; line-height: 1.5;
  color: var(--charcoal);
}

/* callout box */
.aku-callout {
  background: var(--off-white); border: 1px solid var(--warm-grey);
  border-left: 3px solid var(--red); padding: 1.5rem 1.7rem; margin: 2rem 0;
}
.aku-callout__label {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem;
}
.aku-callout p { margin: 0; font-size: 0.95rem; line-height: 1.7; color: var(--text-body); }

/* feature list (2-col checks) */
.aku-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.8rem; margin-top: 1.6rem; }
.aku-feature-item { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.95rem; line-height: 1.55; color: var(--text-body); }
.aku-feature-item svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 1px; }

/* numbered process steps */
.aku-steps { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 1.8rem; counter-reset: step; }
.aku-step { display: grid; grid-template-columns: 56px 1fr; gap: 1.3rem; align-items: start; }
.aku-step__num {
  width: 56px; height: 56px; background: var(--charcoal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
}
.aku-step h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.35rem; }
.aku-step p { font-size: 0.93rem; line-height: 1.65; color: var(--text-body); margin: 0; }

/* FAQ accordion */
.aku-faq { margin-top: 1.6rem; border-top: 1px solid var(--warm-grey); }
.aku-faq details { border-bottom: 1px solid var(--warm-grey); }
.aku-faq summary {
  list-style: none; cursor: pointer; padding: 1.3rem 0; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  font-family: var(--serif); font-size: 1.12rem; font-weight: 600; color: var(--charcoal);
}
.aku-faq summary::-webkit-details-marker { display: none; }
.aku-faq summary .ic { width: 22px; height: 22px; flex-shrink: 0; position: relative; transition: transform 0.3s; }
.aku-faq summary .ic::before, .aku-faq summary .ic::after {
  content: ''; position: absolute; background: var(--red); transition: opacity 0.2s;
}
.aku-faq summary .ic::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.aku-faq summary .ic::after { left: 10px; top: 2px; bottom: 2px; width: 2px; }
.aku-faq details[open] summary .ic::after { opacity: 0; }
.aku-faq details[open] summary .ic { transform: rotate(180deg); }
.aku-faq__body { padding: 0 0 1.4rem; font-size: 0.96rem; line-height: 1.8; color: var(--text-body); max-width: 66ch; }

/* ===== SIDEBAR ===== */
.aku-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 1.5rem; }
.aku-side-card { border: 1px solid var(--warm-grey); padding: 1.8rem; }
.aku-side-card--dark { background: var(--charcoal-deep); border-color: var(--charcoal-deep); }
.aku-side-card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.6rem; }
.aku-side-card > p { font-family: var(--sans); font-size: 0.9rem; line-height: 1.65; color: var(--text-body); margin-bottom: 1.3rem; }
.aku-side-card--dark h3 { color: #fff; font-size: 1.35rem; }
.aku-side-card--dark > p { color: rgba(255,255,255,0.88); }
.aku-side-card .btn-red, .aku-side-card .btn-white { width: 100%; justify-content: space-between; }

.aku-side-label {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1rem;
}
.aku-side-services { list-style: none; padding: 0; }
.aku-side-services li { border-bottom: 1px solid var(--warm-grey); }
.aku-side-services li:last-child { border-bottom: none; }
.aku-side-services a {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding: 0.85rem 0; text-decoration: none;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500; color: var(--charcoal);
  transition: color 0.2s, padding 0.2s;
}
.aku-side-services a svg { width: 14px; height: 14px; color: var(--warm-grey-dark); transition: color 0.2s, transform 0.2s; }
.aku-side-services a:hover { color: var(--red); padding-left: 0.3rem; }
.aku-side-services a:hover svg { color: var(--red); transform: translateX(3px); }
.aku-side-services li.active a { color: var(--red); }
.aku-side-services li.active a::before { content: ''; width: 8px; height: 8px; background: var(--red); margin-right: 0.6rem; flex-shrink: 0; }

.aku-side-contact-row { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.7rem; }
.aku-side-card--dark .aku-side-contact-row svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.aku-side-contact-row a, .aku-side-contact-row span { font-family: var(--sans); font-size: 0.88rem; line-height: 1.45; color: rgba(255,255,255,0.92); text-decoration: none; }
.aku-side-contact-row a:hover { color: var(--white); }

/* ===== BLOG ARTICLE specifics ===== */
.aku-article-wrap { background: var(--white); padding: 0 var(--pad) 5rem; }
.aku-article-inner { max-width: 760px; margin: 0 auto; }
.aku-article-hero {
  height: 380px; margin: 0 auto 3rem; max-width: var(--maxw);
  position: relative; overflow: hidden;
}
.aku-article-hero img { width: 100%; height: 100%; object-fit: cover; }
.aku-article-hero--placeholder {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.6rem;
}
.aku-article-hero--placeholder svg { width: 38px; height: 38px; color: rgba(255,255,255,0.18); }
.aku-article-hero--placeholder span { font-family: var(--sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.22); }

.aku-article-meta { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--warm-grey); }
.aku-article-meta__author { display: flex; align-items: center; gap: 0.7rem; }
.aku-article-meta__avatar {
  width: 42px; height: 42px; background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 0.9rem;
}
.aku-article-meta__name { font-family: var(--sans); font-size: 0.86rem; font-weight: 600; color: var(--charcoal); }
.aku-article-meta__role { font-family: var(--sans); font-size: 0.74rem; color: var(--text-muted); margin-top: 1px; }
.aku-article-meta .dot { color: var(--warm-grey-dark); }
.aku-article-meta .mi { font-family: var(--sans); font-size: 0.8rem; color: var(--text-muted); }

/* author box at article end */
.aku-author-box {
  display: flex; gap: 1.3rem; align-items: flex-start;
  background: var(--off-white); border: 1px solid var(--warm-grey); border-left: 3px solid var(--red);
  padding: 1.8rem; margin-top: 3rem;
}
.aku-author-box__avatar {
  width: 72px; height: 72px; flex-shrink: 0; background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.4rem; color: var(--white);
}
.aku-author-box h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem; }
.aku-author-box p { font-family: var(--sans); font-size: 0.9rem; line-height: 1.65; color: var(--text-body); margin: 0; }

/* related articles */
.aku-related { background: var(--off-white); padding: 5rem var(--pad); }
.aku-related__inner { max-width: var(--maxw); margin: 0 auto; }
.aku-related__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.aku-related__head h2 { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: var(--charcoal); letter-spacing: -0.01em; }
.aku-related__head .sh-divider { width: 40px; height: 3px; background: var(--red); margin-bottom: 0.9rem; }
.aku-related__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.aku-related__all {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); text-decoration: none;
}
.aku-related__all svg { width: 14px; height: 14px; transition: transform 0.2s; }
.aku-related__all:hover svg { transform: translateX(4px); }

@media (max-width: 960px) {
  .aku-page-body__inner { grid-template-columns: 1fr; gap: 3rem; }
  .aku-sidebar { position: static; }
  .aku-feature-grid { grid-template-columns: 1fr; }
  .aku-related__grid { grid-template-columns: 1fr; }
  .aku-article-hero { height: 280px; }
}
@media (max-width: 700px) {
  .aku-step { grid-template-columns: 44px 1fr; gap: 1rem; }
  .aku-step__num { width: 44px; height: 44px; font-size: 1.15rem; }
}

/* ===== SERVICES ARCHIVE ===== */
.aku-services-archive {
  padding: 4rem 0 5rem;
  background: var(--off-white);
}
.aku-services-archive__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
