/* =========================================================
   VK Technologies — shared styles
   CMYK-inspired: process-cyan + magenta-pink on white/charcoal
   ========================================================= */

/* ---- Design tokens (light, default) ---- */
:root {
  --cyan: #0E86C4;
  --cyan-strong: #0A6E9F;
  --magenta: #E4467F;
  --magenta-strong: #C9316A;
  --yellow: #F5C64B;

  --ink: #1F2328;          /* headings / body text */
  --muted: #5A646C;        /* secondary text, hairlines */
  --page-bg: #FFFFFF;      /* page ground */
  --band-bg: #EEF2F5;      /* alternating section ground */
  --surface: #FFFFFF;      /* card / panel fill (flips in dark) */
  --surface-border: #E1E7EC;

  /* Text that sits on saturated brand colour (hero/buttons/footer/nav).
     Stays light in BOTH themes — never remapped to a dark surface. */
  --on-brand: #FFFFFF;

  --header-bg: #14181C;    /* near-black nav/footer in both themes */
  --header-ink: #ECEEF0;

  --link: var(--cyan-strong);
  --shadow: 0 2px 8px rgba(31, 35, 40, 0.08), 0 8px 24px rgba(31, 35, 40, 0.06);

  --radius: 12px;
  --radius-sm: 8px;
  --maxw: 1120px;
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---- Dark override ---- */
[data-theme="dark"] {
  --cyan: #3AA6DE;
  --cyan-strong: #6CC0EC;
  --magenta: #EC5C90;
  --magenta-strong: #F27CA8;

  --ink: #ECEEF0;
  --muted: #A3ADB5;
  --page-bg: #161A1E;
  --band-bg: #1F2328;
  --surface: #22282D;
  --surface-border: #333B42;

  --on-brand: #FFFFFF;     /* still light — sits on saturated brand fills */

  --header-bg: #101316;
  --header-ink: #ECEEF0;

  --link: var(--cyan-strong);
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ---- Reset / base ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--page-bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  transition: background-color .2s ease, color .2s ease;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.1rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: 2px; }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 3.5rem 0; }
.section--band { background: var(--band-bg); }
.section__lead { color: var(--muted); max-width: 60ch; font-size: 1.05rem; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: .8rem;
  font-weight: 700; color: var(--magenta); margin: 0 0 .5rem;
  font-family: var(--font-head);
}
.center { text-align: center; }
.center .section__lead { margin-left: auto; margin-right: auto; }

/* ---- Skip link ---- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--magenta); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .8rem 1.4rem; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .08s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--magenta); color: var(--on-brand); }
.btn--primary:hover { background: var(--magenta-strong); }
.btn--cyan { background: var(--cyan); color: var(--on-brand); }
.btn--cyan:hover { background: var(--cyan-strong); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--surface-border);
}
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan-strong); }
.btn--on-dark { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); }
.btn--on-dark:hover { background: rgba(255,255,255,.22); }

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  background: var(--header-bg); color: var(--header-ink);
  position: sticky; top: 0; z-index: 100;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 66px;
}
.brand { display: flex; align-items: center; text-decoration: none; line-height: 1; }
.brand__mark {
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem;
  color: #fff; letter-spacing: -0.01em; white-space: nowrap;
}
.brand__mark .vk { color: var(--cyan); }
.brand__mark .k { color: var(--magenta); }
.brand__sub {
  display: block; font-size: .62rem; letter-spacing: .09em; text-transform: uppercase;
  color: #9aa4ac; font-weight: 600; margin-top: 3px; font-family: var(--font-body);
}

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  color: var(--header-ink); text-decoration: none; font-weight: 500;
  padding: .5rem .7rem; border-radius: 6px; font-size: .98rem;
}
.nav a:hover { background: rgba(255,255,255,.09); }
/* Active link: a lighter cyan (>=7:1 on the near-black header in both themes)
   plus an underline so colour isn't the only cue. */
.nav a[aria-current="page"] {
  color: #4FB0E5; font-weight: 600;
  text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px;
}

.header-actions { display: flex; align-items: center; gap: .5rem; }
.header-call {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--magenta); color: #fff; text-decoration: none;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  padding: .5rem .85rem; border-radius: 6px;
}
.header-call:hover { background: var(--magenta-strong); }

/* Theme toggle */
.theme-toggle {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--header-ink); width: 40px; height: 40px; border-radius: 8px;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,.2); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,.25);
  color: var(--header-ink); width: 40px; height: 40px; border-radius: 8px; cursor: pointer;
  align-items: center; justify-content: center; padding: 0;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 66px; left: 0; right: 0;
    background: var(--header-bg); flex-direction: column; align-items: stretch;
    padding: .5rem 1.25rem 1rem; gap: 0;
    border-top: 1px solid rgba(255,255,255,.1);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem .5rem; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .header-call span.full { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; background: var(--header-bg); color: #fff; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center;
  padding: 3.5rem 0;
}
.hero__title { color: #fff; }
.hero__title .accent { color: var(--cyan); }
.hero__lead { color: #c9d1d8; font-size: 1.15rem; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.hero__media { position: relative; }
.hero__media img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  width: 100%; height: 100%; max-height: 420px; object-fit: cover;
}
.cmyk-bar { display: flex; height: 8px; border-radius: 0 0 var(--radius) var(--radius); overflow: hidden; margin-top: -8px; position: relative; }
.cmyk-bar span { flex: 1; }
.cmyk-bar .c { background: var(--cyan); }
.cmyk-bar .m { background: var(--magenta); }
.cmyk-bar .y { background: var(--yellow); }
.cmyk-bar .k { background: #1F2328; }

@media (max-width: 800px) {
  .hero__grid { grid-template-columns: 1fr; gap: 1.75rem; padding: 2.5rem 0; }
  .hero__media { order: -1; }
  .hero__media img { max-height: 260px; }
}

/* =========================================================
   Trust strip
   ========================================================= */
.trust {
  background: var(--band-bg); border-bottom: 1px solid var(--surface-border);
}
.trust__row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.5rem;
  padding: 1rem 0; align-items: center;
}
.trust__item {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .95rem; color: var(--ink); font-weight: 500;
}
.trust__item strong { font-family: var(--font-head); }
.trust__star { color: var(--yellow); }
.trust__sep { color: var(--muted); }
@media (max-width: 640px) { .trust__sep { display: none; } }

/* =========================================================
   Services grid
   ========================================================= */
.grid-services {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
@media (max-width: 900px) { .grid-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .grid-services { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius); padding: 1.3rem; text-decoration: none;
  color: var(--ink); display: block; transition: transform .1s ease, box-shadow .15s ease, border-color .15s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--cyan); }
.svc-card__icon {
  width: 42px; height: 42px; border-radius: 10px; margin-bottom: .8rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,134,196,.12); color: var(--cyan);
}
.svc-card__icon svg { width: 24px; height: 24px; }
.svc-card:nth-child(even) .svc-card__icon { background: rgba(228,70,127,.12); color: var(--magenta); }
.svc-card h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.svc-card p { font-size: .9rem; color: var(--muted); margin: 0; }

/* =========================================================
   Feature / split rows (Services page & About)
   ========================================================= */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
  margin-bottom: 3rem;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; max-height: 340px; }
.feature-row--flip .feature-row__text { order: 2; }
@media (max-width: 800px) {
  .feature-row { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2.25rem; }
  .feature-row--flip .feature-row__text { order: 0; }
}

/* Service section list (Services page) */
.svc-block { border-top: 1px solid var(--surface-border); padding: 2rem 0; }
.svc-block:first-of-type { border-top: none; }
.svc-block h3 { color: var(--cyan-strong); display: flex; align-items: center; gap: .6rem; }
.svc-block ul { margin: .5rem 0 0; padding-left: 1.2rem; color: var(--muted); }
.svc-block ul li { margin-bottom: .25rem; }

/* =========================================================
   Send-artwork strip / CTA band
   ========================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--cyan) 0%, var(--magenta) 100%);
  color: #fff; border-radius: var(--radius); padding: 2.25rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { margin: 0; max-width: 52ch; opacity: .95; }
.cta-band__text { flex: 1 1 320px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* =========================================================
   Reviews
   ========================================================= */
.grid-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 820px) { .grid-reviews { grid-template-columns: 1fr; } }
.review {
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column;
}
.review__stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: .6rem; }
.review__quote { font-size: .98rem; margin-bottom: 1rem; }
.review__by { margin-top: auto; font-weight: 600; font-family: var(--font-head); font-size: .95rem; }
.review__meta { color: var(--muted); font-size: .82rem; }

/* =========================================================
   Location / hours / map
   ========================================================= */
.locate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 820px) { .locate-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--surface); border: 1px solid var(--surface-border);
  border-radius: var(--radius); padding: 1.5rem;
}
.info-card h3 { display: flex; align-items: center; gap: .5rem; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: .6rem; padding: .35rem 0; align-items: baseline; }
.info-list .lbl { color: var(--muted); min-width: 84px; font-size: .9rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: .35rem 0; font-size: .95rem; }
.hours-table th { color: var(--muted); font-weight: 500; }
.note {
  font-size: .85rem; color: var(--muted); background: rgba(245,198,75,.14);
  border-left: 3px solid var(--yellow); padding: .6rem .8rem; border-radius: 0 6px 6px 0; margin-top: 1rem;
}
.map-embed {
  border: 1px solid var(--surface-border); border-radius: var(--radius); overflow: hidden;
  line-height: 0; box-shadow: var(--shadow);
}
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* =========================================================
   Contact / form
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; font-family: var(--font-head); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .7rem .8rem; border-radius: var(--radius-sm);
  border: 1px solid var(--surface-border); background: var(--page-bg); color: var(--ink);
  font-family: var(--font-body); font-size: 1rem;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--cyan); outline-offset: 1px; border-color: var(--cyan);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-help { font-size: .85rem; color: var(--muted); margin-top: .75rem; }
.req { color: var(--magenta); }

/* =========================================================
   Specials
   ========================================================= */
.special-slot {
  border: 2px dashed var(--surface-border); border-radius: var(--radius);
  padding: 2.5rem 1.5rem; text-align: center; color: var(--muted); background: var(--surface);
}
.special-slot svg { width: 40px; height: 40px; color: var(--cyan); margin-bottom: .5rem; }

/* =========================================================
   Footer + sticky mobile call bar
   ========================================================= */
.site-footer {
  background: var(--header-bg); color: var(--header-ink); padding: 2.5rem 0 5.5rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: .8rem; }
.site-footer a { color: #c9d1d8; text-decoration: none; }
.site-footer a:hover { color: var(--cyan); text-decoration: underline; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding-top: 1.25rem;
  font-size: .82rem; color: #9aa4ac; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
}

.mobile-callbar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--header-bg); border-top: 1px solid rgba(255,255,255,.12);
}
.mobile-callbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .85rem; text-decoration: none; font-family: var(--font-head); font-weight: 600; font-size: .95rem;
}
.mobile-callbar .call { background: var(--magenta); color: #fff; }
.mobile-callbar .dir { color: var(--header-ink); }
.mobile-callbar svg { width: 18px; height: 18px; }
@media (max-width: 700px) {
  .mobile-callbar { display: flex; }
  .site-footer { padding-bottom: 5.5rem; }
}
@media (min-width: 701px) {
  .site-footer { padding-bottom: 2.5rem; }
}

/* Utility */
.stack > * + * { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.text-muted { color: var(--muted); }
.fb-link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }
