/*
Verkko Publishing PT — Services site stylesheet
Enqueued via functions.php for every page using header.php/footer.php
(Home, Services, About, Contact, Showcase). page-catalogue.php is
unaffected — it keeps its own self-contained inline design system.

PALETTE — extends the catalogue page's established purple/lilac brand
colour. Every place the catalogue used forest green (#2F5C42) as the
accent/CTA colour, this stylesheet uses black instead, for a harder,
more contrasting call-to-action against the lilac.
*/

:root {
  --lilac:      #AC40B0;
  --lilac-pale: #EBD6EE;
  --black:      #0B0B0C;
  --black-soft: #1C1A1D;
  --bone:       #F7F5EF;
  --bone-dim:   #E4E0D4;
  --stone:      #C9C2AE;
  --rule:       rgba(247, 245, 239, 0.14);
  --rule-dark:  rgba(11, 11, 12, 0.10);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;

  --text-xs:  0.75rem;
  --text-sm:  0.875rem;
  --text-base: 1rem;
  --text-md:  1.125rem;
  --text-lg:  1.375rem;
  --text-xl:  1.75rem;
  --text-2xl: 2.25rem;
  --text-3xl: 3rem;
  --text-4xl: clamp(2.75rem, 6vw, 4.75rem);
  --text-5xl: clamp(2.5rem, 6vw, 4.5rem);

  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { background: var(--bone); scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--lilac);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 17px;
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--black);
}

p { margin: 0; }

.vk-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   NAV
   ============================================================ */

.vk-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(247, 245, 239, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule-dark);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.vk-nav.is-scrolled {
  background: rgba(247, 245, 239, 0.97);
}

.vk-nav-mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.vk-nav-logo {
  display: block;
  height: 66px;
  width: auto;
}

.vk-nav-links {
  display: flex;
  gap: 28px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--lilac);
  flex: 1;
  transition: color 0.3s ease;
  justify-content: center;
}

.vk-nav-links a { transition: color 0.3s ease; }
.vk-nav-links a:hover { color: var(--black); }

.vk-nav-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  background: var(--black);
  color: var(--bone);
  padding: 10px 22px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vk-nav-cta:hover { background: var(--lilac); transform: translateY(-1px); }

@media (max-width: 760px) {
  .vk-nav-links { display: none; }
  .vk-nav-cta { display: none; }
}

/* Hamburger toggle */
.vk-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.vk-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lilac);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.3s ease;
}

.vk-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vk-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.vk-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .vk-nav-toggle { display: flex; }
}

/* Mobile menu panel */
.vk-mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 93px;
  left: 0;
  right: 0;
  background: var(--bone);
  border-bottom: 1px solid var(--rule-dark);
  padding: 8px 32px 28px;
  gap: 4px;
  z-index: 99;
  max-height: calc(100vh - 93px);
  overflow-y: auto;
}

.vk-mobile-menu.is-open { display: flex; }

.vk-mobile-menu a {
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--lilac);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-dark);
}

.vk-mobile-menu a:last-child { border-bottom: none; }

.vk-mobile-menu-cta {
  margin-top: 18px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--bone) !important;
  font-weight: 600;
  padding: 14px 22px !important;
  border-radius: 999px;
  border-bottom: none !important;
}

/* ============================================================
   HERO (light — retained for other pages that may still use it,
   no longer used on the homepage as of the dark hero rebuild)
   ============================================================ */
.vk-hero {
  position: relative;
  padding: 168px 0 96px;
  background: var(--bone);
}

.vk-hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--black);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vk-hero-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--black);
}

.vk-hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: end;
}

.vk-hero h1 {
  font-size: var(--text-5xl);
  max-width: 15ch;
  color: var(--lilac);
}

.vk-hero h1 em {
  font-style: italic;
  color: var(--black);
}

.vk-hero-side { padding-bottom: 12px; }

.vk-hero-side p {
  font-size: var(--text-lg);
  color: #3A2E3C;
  max-width: 34ch;
  margin: 0 0 28px;
}

.vk-hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--rule-dark);
  padding-top: 20px;
}

.vk-hero-stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--black);
  display: block;
}

.vk-hero-stat-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone);
}

@media (max-width: 860px) {
  .vk-hero { padding: 140px 0 64px; }
  .vk-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .vk-hero h1 { max-width: none; }
}

/* ============================================================
   HERO — DARK (homepage)
   ============================================================ */
.vk-hero-dark {
  position: relative;
  background: var(--bone);
  padding: 60px 0 0;
}

.vk-hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 50% 50%;
  height: clamp(460px, 58vh, 600px);
  margin-top: 0;
  overflow: hidden;
}

.vk-hero-split-left {
  background: var(--bone);
  display: flex;
  align-items: center;
}

.vk-hero-split-list {
  width: 100%;
  padding: 0 6% 0 0;
}

.vk-hero-split-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  padding: 14px 0;
  cursor: pointer;
  text-align: left;
}

.vk-hero-split-item-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-4xl);
  color: var(--black);
  transition: color 0.45s ease, transform 0.45s ease;
  display: inline-block;
}

.vk-hero-split-item:hover .vk-hero-split-item-title {
  transform: translateX(4px);
}

.vk-hero-split-item[aria-selected="true"] .vk-hero-split-item-title {
  color: var(--lilac);
}

.vk-hero-split-right {
  position: relative;
}

@property --vk-gradient-angle {
  syntax: '<angle>';
  initial-value: 135deg;
  inherits: false;
}

.vk-hero-split-diagonal {
  position: absolute;
  inset: 0;
  --vk-gradient-angle: 135deg;
  background-image: linear-gradient(var(--vk-gradient-angle), #AC40C0 3%, #BF4091 93%);
  animation: vk-gradient-rotate 18s linear infinite;
}

@keyframes vk-gradient-rotate {
  to { --vk-gradient-angle: 495deg; }
}

.vk-hero-split-panels {
  position: absolute;
  inset: 0;
  padding: 0 56px;
  display: flex;
  align-items: center;
}

.vk-hero-split-panel {
  position: absolute;
  left: 28px;
  right: 56px;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vk-hero-split-panel.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.vk-hero-split-panel h3 {
  font-size: var(--text-2xl);
  color: var(--bone);
  margin-bottom: 12px;
}

.vk-hero-split-idle-logo {
  display: block;
  height: 80px;
  width: auto;
  margin-bottom: 28px;
}

.vk-hero-split-panel p {
  font-size: var(--text-md);
  color: var(--bone);
  opacity: 0.9;
  max-width: 42ch;
  margin-bottom: 20px;
}

.vk-hero-split-panel .vk-stage-tags {
  margin: 0 0 24px;
}

.vk-hero-split-panel .vk-stage-tag {
  color: var(--bone);
  border-color: rgba(247, 245, 239, 0.5);
}

.vk-hero-split-panel .vk-service-cta {
  background: var(--black);
  color: var(--bone);
}

.vk-hero-split-panel .vk-service-cta:hover {
  background: var(--bone);
  color: var(--black);
}

@media (max-width: 820px) {
  .vk-hero-split {
    display: block;
    height: auto;
    border: none;
    overflow: visible;
  }

  .vk-hero-split-list {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .vk-hero-split-item {
    display: block;
    padding: 18px 16px;
    border: none;
    border-right: 1px solid var(--rule-dark);
    border-bottom: 1px solid var(--rule-dark);
  }

  .vk-hero-split-item:nth-child(2n) {
    border-right: none;
  }

  .vk-hero-split-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .vk-hero-split-item-title {
    display: block;
    margin-top: 2px;
    font-size: var(--text-xl);
  }

  /* Right side becomes one shared answer card, stacked below the
     full list — no longer hidden, no longer split per-item. The
     diagonal shape is dropped in favour of a plain rounded card. */
  .vk-hero-split-right {
    margin-top: 20px;
    border-radius: 4px;
    overflow: hidden;
  }

  .vk-hero-split-diagonal {
    clip-path: none;
  }

  .vk-hero-split-panels {
    position: static;
    padding: 32px 28px;
    display: block;
  }

  .vk-hero-split-panel {
    position: static;
    left: auto;
    right: auto;
    display: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .vk-hero-split-panel.is-active {
    display: block;
  }
}

@media (max-width: 700px) {
  .vk-hero-dark { padding: 113px 0 0; }
}

.vk-hero-floating-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  background: var(--lilac);
  color: var(--bone);
  font-weight: 600;
  font-size: var(--text-sm);
  white-space: nowrap;
  line-height: 1;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.5);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.vk-hero-floating-cta svg { flex-shrink: 0; width: 13px; height: 13px; }

.vk-hero-floating-cta:hover { background: var(--black); transform: translateY(-2px); }

@media (max-width: 760px) {
  .vk-hero-floating-cta { display: none; }
}

/* ============================================================
/* ============================================================
   SECTION INTRO (used above the services list, etc.)
   ============================================================ */
.vk-section-intro {
  padding: 88px 0 40px;
  background: var(--bone);
}

.vk-section-intro .vk-hero-eyebrow { margin-bottom: 18px; }

.vk-section-intro h2 {
  font-size: var(--text-3xl);
  color: var(--lilac);
  max-width: 20ch;
}

.vk-section-intro h2 em { font-style: italic; color: var(--black); }

/* ============================================================
   SERVICES LIST (spine pattern, reused from the catalogue theme)
   ============================================================ */
.vk-services {
  background: var(--lilac);
  padding: 64px 0 40px;
}

.vk-services-list {
  position: relative;
  margin: 0;
  padding: 0;
}

.vk-services-list::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 56px;
  width: 1px;
  background: var(--rule);
}

@media (max-width: 700px) {
  .vk-services-list::before { left: 20px; }
}

.vk-service-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  position: relative;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
}

@media (max-width: 700px) {
  .vk-service-row { grid-template-columns: 90px 1fr; padding: 36px 0; }
  .vk-service-index { font-size: 3.5rem; }
}

.vk-service-row:last-child { border-bottom: none; }

.vk-service-index {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 6rem;
  line-height: 1;
  color: var(--lilac-pale);
}

.vk-service-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

@media (max-width: 760px) {
  .vk-service-body { grid-template-columns: 1fr; gap: 20px; }
}

.vk-service-copy h3 {
  font-size: var(--text-2xl);
  color: var(--bone);
  margin-bottom: 10px;
}

.vk-service-copy p {
  font-size: var(--text-md);
  color: var(--lilac-pale);
  max-width: 52ch;
}

.vk-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--bone);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 14px 26px;
  border-radius: 999px;
  white-space: nowrap;
  align-self: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vk-service-cta:hover { background: var(--bone); color: var(--black); transform: translateY(-1px); }

.vk-service-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

.vk-stage-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}

.vk-stage-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lilac-pale);
  background: transparent;
  border: 1.5px solid rgba(235, 214, 238, 0.55);
  padding: 6.5px 15px;
  border-radius: 999px;
}

/* ============================================================
   CREDENTIALS / METHOD BAND
   ============================================================ */
.vk-method {
  background: var(--lilac);
  padding: 96px 0;
}

.vk-method-intro {
  margin-bottom: 56px;
}

.vk-method h2 {
    font-size: var(--text-3xl);
    color: var(--bone);
    text-align: center;
    line-height: 1.6;
}

.vk-method h2 em { font-style: italic; color: var(--black); }

.vk-method-dark {
  background: var(--black);
}

.vk-method-dark h2 em {
  color: var(--lilac);
}

.vk-method-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.vk-method-card {
  background-image: linear-gradient(135deg, #AC40C0 3%, #BF4091 93%);
  border: 1px solid var(--bone);
  border-radius: 6px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.vk-method-card h3 {
  font-size: var(--text-xl);
  color: var(--bone);
  margin-bottom: 16px;
}

.vk-method-card p {
  font-size: var(--text-base);
  color: var(--bone);
  margin-bottom: 0;
}

/* Card 2 — comparison rows */
.vk-compare {
  display: flex;
  flex-direction: column;
}

.vk-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: var(--text-sm);
}

.vk-compare-header {
  border-top: none;
  padding-top: 0;
  padding-bottom: 14px;
  font-weight: 600;
  color: var(--bone);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vk-compare-row span:first-child {
  color: rgba(247, 245, 239, 0.65);
}

.vk-compare-row span:last-child {
  color: var(--bone);
  font-weight: 600;
}

.vk-compare-header span {
  color: var(--bone) !important;
  font-weight: 600 !important;
}

/* Card 3 — hook + CTA (same gradient card, just the one with a button) */
.vk-method-card-cta p {
  opacity: 0.92;
  margin-bottom: 24px;
}

.vk-method-card-cta .vk-service-cta {
  background: var(--black);
  color: var(--bone);
  align-self: flex-start;
  margin-top: auto;
}

.vk-method-card-cta .vk-service-cta:hover {
  background: var(--bone);
  color: var(--black);
}

@media (max-width: 900px) {
  .vk-method-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .vk-compare-row { grid-template-columns: 1fr; gap: 2px; }
  .vk-compare-row span:last-child { font-size: var(--text-xs); }
  .vk-compare-header { display: none; }
}

/* ============================================================
   PUBLISHING CROSS-SELL BANNER
   ============================================================ */
.vk-publish-banner {
  background: var(--black);
  color: var(--bone);
  padding: 80px 0;
}

.vk-publish-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.vk-publish-banner h2 {
  color: var(--bone);
  font-size: var(--text-2xl);
  max-width: 20ch;
  margin-bottom: 10px;
}

.vk-publish-banner p {
  color: var(--stone);
  max-width: 46ch;
  font-size: var(--text-md);
}

.vk-publish-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lilac);
  color: var(--bone);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 16px 30px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vk-publish-cta:hover { background: var(--bone); color: var(--black); transform: translateY(-1px); }

/* ============================================================
   SUBPAGE HERO (shorter than the homepage hero — for Services,
   About, Showcase intros)
   ============================================================ */
.vk-subpage-hero {
  padding: 172px 0 64px;
  background: var(--bone);
}

.vk-subpage-hero h1 {
  font-size: var(--text-4xl);
  color: var(--lilac);
  max-width: 16ch;
  margin-bottom: 20px;
}

.vk-subpage-hero h1 em { font-style: italic; color: var(--black); }

.vk-subpage-hero-intro {
  font-size: var(--text-lg);
  color: #3A2E3C;
  max-width: 56ch;
}

/* ============================================================
   SERVICE DETAIL LIST (dedicated Services page — spine pattern
   plus a "what's included" breakdown per service)
   ============================================================ */
.vk-service-detail .vk-service-copy p { margin-bottom: 18px; }

.vk-service-includes {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  max-width: 52ch;
}

.vk-service-includes li {
  font-size: var(--text-sm);
  color: var(--bone);
  padding-left: 18px;
  position: relative;
}

.vk-service-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--black);
}

@media (max-width: 520px) {
  .vk-service-includes { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS STRIP (simple numbered steps — Services page)
   ============================================================ */
.vk-process {
  background: var(--bone);
  padding: 88px 0;
}

.vk-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.vk-process-step-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--black);
  display: block;
  margin-bottom: 10px;
}

.vk-process-step h4 {
  font-size: var(--text-md);
  color: var(--lilac);
  margin-bottom: 8px;
}

.vk-process-step p {
  font-size: var(--text-sm);
  color: #5C4A5E;
}

@media (max-width: 900px) {
  .vk-process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .vk-process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.vk-contact {
  padding: 172px 0 96px;
  background: var(--bone);
}

.vk-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 860px) {
  .vk-contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.vk-contact-intro h1 {
  font-size: var(--text-4xl);
  color: var(--lilac);
  max-width: 14ch;
  margin-bottom: 20px;
}

.vk-contact-intro h1 em { font-style: italic; color: var(--black); }

.vk-contact-intro p {
  font-size: var(--text-md);
  color: #3A2E3C;
  max-width: 42ch;
  margin-bottom: 32px;
}

.vk-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top: 1px solid var(--rule-dark);
  padding-top: 26px;
}

.vk-contact-detail-item span {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-bottom: 4px;
}

.vk-contact-detail-item a,
.vk-contact-detail-item p {
  font-family: var(--font-display);
  font-size: var(--text-md);
  color: var(--lilac);
}

.vk-contact-detail-item a:hover { color: var(--black); }

.vk-contact-form {
  background: var(--lilac);
  border-radius: 4px;
  padding: 44px;
}

@media (max-width: 520px) {
  .vk-contact-form { padding: 28px; }
}

.vk-field { margin-bottom: 22px; }
.vk-field:last-of-type { margin-bottom: 0; }

.vk-field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lilac-pale);
  margin-bottom: 8px;
}

.vk-field input,
.vk-field select,
.vk-field textarea {
  width: 100%;
  background: var(--bone);
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--black);
  transition: border-color 0.15s ease;
}

.vk-field input:focus,
.vk-field select:focus,
.vk-field textarea:focus {
  outline: none;
  border-color: var(--black);
}

.vk-field textarea { resize: vertical; min-height: 140px; }

.vk-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 560px) {
  .vk-field-row { grid-template-columns: 1fr; }
}

/* honeypot — hidden from real visitors, left open for bots */
.vk-field-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.vk-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--bone);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 15px 30px;
  border-radius: 999px;
  margin-top: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vk-submit-btn:hover { background: var(--bone); color: var(--black); transform: translateY(-1px); }

.vk-form-notice {
  border-radius: 4px;
  padding: 16px 20px;
  font-size: var(--text-sm);
  margin-bottom: 24px;
}

.vk-form-notice.is-success {
  background: var(--bone);
  color: var(--lilac);
  border: 1px solid var(--lilac);
}

.vk-form-notice.is-error {
  background: var(--bone);
  color: #7A1414;
  border: 1px solid #7A1414;
}

/* ============================================================
   SHOWCASE PAGE
   ============================================================ */
.vk-showcase {
  padding: 24px 0 96px;
  background: var(--bone);
}

.vk-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 900px) {
  .vk-showcase-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .vk-showcase-grid { grid-template-columns: 1fr; }
}

.vk-project-card { display: flex; flex-direction: column; }

.vk-project-frame {
  aspect-ratio: 4 / 3;
  background: var(--lilac);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}

.vk-project-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(247, 245, 239, 0.35);
  margin: 12px;
  pointer-events: none;
}

.vk-project-frame-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--bone);
  text-align: center;
}

.vk-project-frame-sub {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lilac-pale);
  margin-top: 10px;
}

.vk-project-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  margin-bottom: 10px;
  display: block;
}

.vk-project-card h3 {
  font-size: var(--text-xl);
  color: var(--lilac);
  margin-bottom: 8px;
}

.vk-project-card p {
  font-size: var(--text-sm);
  color: #5C4A5E;
  margin-bottom: 18px;
}

.vk-project-placeholder-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  border: 1px solid var(--rule-dark);
  padding: 11px 20px;
  border-radius: 999px;
}

.vk-project-placeholder-cta::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lilac);
}

/* ============================================================
   PUBLISHING PAGE (book catalogue, rebuilt in the site-wide
   lilac/black palette — ports the original page-catalogue.php
   layout onto the shared header/footer)
   ============================================================ */
.vk-pub-section {
  background: var(--lilac);
  padding: 0 0 40px;
}

.vk-pub-imprint-band {
  background: var(--lilac);
  color: var(--bone);
  padding: 56px 0 40px;
}

.vk-pub-imprint-band-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 28px;
}

.vk-pub-imprint-name {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--bone);
}

.vk-pub-imprint-desc {
  font-size: var(--text-base);
  color: var(--lilac-pale);
  max-width: 36ch;
  text-align: right;
}

@media (max-width: 700px) {
  .vk-pub-imprint-desc { text-align: left; max-width: none; }
}

.vk-pub-list {
  position: relative;
  margin: 0;
  padding: 0;
}

.vk-pub-list::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 56px;
  width: 1px;
  background: var(--rule);
}

@media (max-width: 700px) {
  .vk-pub-list::before { left: 20px; }
}

.vk-pub-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  position: relative;
  padding: 64px 0;
  border-bottom: 1px solid var(--rule);
}

.vk-pub-row:last-child { border-bottom: none; }

.vk-pub-index {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--lilac-pale);
  padding-top: 6px;
  position: relative;
}

.vk-pub-index::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--lilac);
  transform: translateX(-50%);
}

@media (max-width: 700px) {
  .vk-pub-row { grid-template-columns: 32px 1fr; padding: 48px 0; }
  .vk-pub-index::before { left: -33px; }
}

.vk-pub-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.vk-pub-row.is-reversed .vk-pub-body { grid-template-columns: 1fr 280px; }
.vk-pub-row.is-reversed .vk-pub-cover { order: 2; }
.vk-pub-row.is-reversed .vk-pub-copy { order: 1; }

@media (max-width: 760px) {
  .vk-pub-body,
  .vk-pub-row.is-reversed .vk-pub-body { grid-template-columns: 1fr; gap: 28px; }
  .vk-pub-row.is-reversed .vk-pub-cover { order: 1; }
  .vk-pub-row.is-reversed .vk-pub-copy { order: 2; }
  .vk-pub-cover { max-width: 200px; }
}

.vk-pub-cover-frame {
  aspect-ratio: 5 / 7.7;
  background: var(--lilac);
  border: 1px solid var(--rule);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.45);
}

.vk-pub-cover-frame img { width: 100%; height: 100%; object-fit: cover; }

.vk-pub-cover-frame.is-soon {
  box-shadow: none;
  background: transparent;
  border: 1px dashed var(--rule);
}

.vk-pub-cover-placeholder { text-align: center; padding: 24px; color: var(--stone); }

.vk-pub-cover-placeholder-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--lilac-pale);
  display: block;
  margin-bottom: 10px;
}

.vk-pub-cover-placeholder-sub {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vk-pub-imprint-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
  margin-bottom: 14px;
  display: block;
}

.vk-pub-copy h3 { font-size: var(--text-2xl); color: var(--bone); margin-bottom: 6px; }

.vk-pub-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-md);
  color: var(--stone);
  margin-bottom: 18px;
}

.vk-pub-strapline {
  font-size: var(--text-md);
  color: var(--bone-dim);
  font-weight: 500;
  margin-bottom: 14px;
  max-width: 44ch;
}

.vk-pub-blurb {
  font-size: var(--text-base);
  color: var(--stone);
  max-width: 50ch;
  margin-bottom: 26px;
}

.vk-pub-meta { display: flex; gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }

.vk-pub-meta span {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone);
  border-left: 2px solid var(--black);
  padding-left: 10px;
}

.vk-pub-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--bone);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 14px 26px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vk-pub-cta:hover { background: var(--bone); color: var(--black); transform: translateY(-1px); }
.vk-pub-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

.vk-pub-soon-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  border: 1px solid var(--rule);
  padding: 12px 22px;
  border-radius: 999px;
}

.vk-pub-soon-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lilac-pale);
}

.vk-pub-disclosure {
  font-size: var(--text-xs);
  color: var(--lilac-pale);
  padding: 32px 0 8px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.vk-about-body {
  padding: 0 0 96px;
  background: var(--bone);
}

.vk-about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 860px) {
  .vk-about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.vk-about-sidebar {
  position: sticky;
  top: 110px;
}

.vk-about-sidebar-title {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  margin-bottom: 20px;
  display: block;
}

/* ============================================================
   GENERIC CONTENT PAGE (unstyled fallback wrapper)
   ============================================================ */
.vk-page {
  padding: 192px 0 96px;
  background: var(--bone);
  min-height: 40vh;
}

.vk-page h1 {
  font-size: var(--text-4xl);
  color: var(--lilac);
  max-width: 18ch;
  margin-bottom: 24px;
}

.vk-page-intro {
  font-size: var(--text-lg);
  color: #3A2E3C;
  max-width: 60ch;
  margin-bottom: 40px;
}

.vk-body-copy {
  max-width: 68ch;
  font-size: var(--text-base);
  color: var(--lilac);
}

.vk-body-copy p { margin-bottom: 20px; }
.vk-body-copy p:last-child { margin-bottom: 0; }

.vk-page .vk-body-copy {
  max-width: 70ch;
  font-size: var(--text-base);
  color: var(--lilac);
}

.vk-page .vk-body-copy p { margin-bottom: 20px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.vk-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vk-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FOOTER
   ============================================================ */
.vk-footer {
  background: var(--lilac);
  color: var(--lilac-pale);
  padding: 56px 0 40px;
  border-top: 1px solid var(--rule);
}

.vk-footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.vk-footer-mark {
  font-family: var(--font-display);
  color: var(--bone);
  font-size: var(--text-lg);
  margin-bottom: 8px;
}

.vk-footer-note {
  font-size: var(--text-sm);
  max-width: 40ch;
}

.vk-footer-links {
  display: flex;
  gap: 24px;
  font-size: var(--text-sm);
  flex-wrap: wrap;
}

.vk-footer-links a:hover { color: var(--bone); }

.vk-footer-legal {
  font-size: var(--text-xs);
  color: #B99CBD;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}