/* ─────────────────────────────────────────────
   Wellington Printers — site styles
   Locked palette: navy / blue / white / soft-grey
   Type: Inter (400 / 600 / 700)
───────────────────────────────────────────── */

:root {
  --navy: #1c4070;
  --navy-deep: #14305a;
  --blue: #2a8dc4;
  --blue-soft: #d4e8f4;
  --white: #ffffff;
  --soft: #f4f6f9;
  --soft-2: #eaeef4;
  --text: #222222;
  --muted: #5b6473;
  --border: #e3e7ee;
  --border-2: #cbd3e0;

  --radius: 10px;
  --radius-sm: 6px;
  --shadow-soft: 0 1px 2px rgba(20,30,55,.04), 0 6px 22px rgba(20,30,55,.06);
  --shadow-lift: 0 2px 4px rgba(20,30,55,.05), 0 16px 40px rgba(20,30,55,.08);

  --gap-sm: 12px;
  --gap-md: 24px;
  --gap-lg: 48px;
  --gap-xl: 80px;

  --container: 1180px;
  --pad-x: 56px;

  --t-eyebrow: 13px;
  --t-body: 17px;
  --t-lead: 19px;
  --t-h3: 22px;
  --t-h2: 36px;
  --t-h1: 60px;
  --t-hero: 76px;
}

.wp { /* root scope so styles don't leak into the canvas chrome */
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: var(--t-body);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.wp *, .wp *::before, .wp *::after { box-sizing: border-box; }
.wp h1, .wp h2, .wp h3, .wp h4, .wp p, .wp ul, .wp ol, .wp figure { margin: 0; padding: 0; }
.wp ul, .wp ol { list-style: none; }
.wp a { color: inherit; text-decoration: none; }
.wp img { display: block; max-width: 100%; }
.wp button { font: inherit; cursor: pointer; }

/* ── container / utility ───────────────────── */
.wp .container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.wp .eyebrow {
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}
.wp .lead { font-size: var(--t-lead); color: var(--muted); line-height: 1.55; text-wrap: pretty; }
.wp h1 { font-size: var(--t-h1); line-height: 1.04; font-weight: 700; letter-spacing: -.02em; color: var(--navy); text-wrap: balance; }
.wp h2 { font-size: var(--t-h2); line-height: 1.12; font-weight: 700; letter-spacing: -.01em; color: var(--navy); text-wrap: balance; }
.wp h3 { font-size: var(--t-h3); font-weight: 600; color: var(--navy); }
.wp .h-hero { font-size: var(--t-hero); line-height: .98; letter-spacing: -.025em; }
.wp .num { font-feature-settings: "tnum","ss01"; }

/* ── buttons ───────────────────────────────── */
.wp .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid transparent;
  transition: background .15s, color .15s, border .15s, transform .1s;
  white-space: nowrap;
}
.wp .btn .arrow { display: inline-block; transition: transform .15s; }
.wp .btn:hover .arrow { transform: translateX(2px); }
.wp .btn-primary { background: var(--navy); color: #fff; }
.wp .btn-primary:hover { background: var(--navy-deep); }
.wp .btn-secondary { background: transparent; color: var(--navy); border-color: var(--border-2); }
.wp .btn-secondary:hover { border-color: var(--navy); }
.wp .btn-on-navy-primary { background: #fff; color: var(--navy); }
.wp .btn-on-navy-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.wp .btn-on-navy-secondary:hover { border-color: #fff; }

/* ── header ────────────────────────────────── */
.wp .header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 5;
}
.wp .header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
  gap: 28px;
}
.wp .brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.wp .brand-mark { width: 44px; height: 44px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.wp .brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.wp .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.wp .brand-name { font-weight: 700; font-size: 17px; color: var(--navy); letter-spacing: -.01em; }
.wp .brand-sub { font-size: 11px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }

.wp .nav { display: flex; align-items: center; gap: 32px; }
.wp .nav a { font-weight: 500; color: var(--text); font-size: 15px; padding: 8px 0; position: relative; }
.wp .nav a.active { color: var(--navy); font-weight: 600; }
.wp .nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--blue);
}
.wp .nav a:hover { color: var(--navy); }

.wp .header-cta { display: flex; align-items: center; gap: 16px; }
.wp .header-phone { font-size: 14px; color: var(--muted); font-weight: 500; }
.wp .header-phone strong { color: var(--navy); font-weight: 600; }

/* navy header variant */
.wp .header.is-navy { background: var(--navy); border-bottom-color: var(--navy-deep); }
.wp .header.is-navy .nav a { color: rgba(255,255,255,.78); }
.wp .header.is-navy .nav a:hover, .wp .header.is-navy .nav a.active { color: #fff; }
.wp .header.is-navy .nav a.active::after { background: var(--blue); }
.wp .header.is-navy .brand-name { color: #fff; }
.wp .header.is-navy .brand-sub { color: rgba(255,255,255,.6); }
.wp .header.is-navy .brand-mark { background: #fff; border-radius: 8px; padding: 6px; }
.wp .header.is-navy .header-phone { color: rgba(255,255,255,.7); }
.wp .header.is-navy .header-phone strong { color: #fff; }
.wp .header.is-navy .btn-primary { background: #fff; color: var(--navy); }
.wp .header.is-navy .btn-primary:hover { background: var(--soft); }

/* ── placeholder image ────────────────────── */
.wp .ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(28,64,112,.04) 0 14px,
      rgba(28,64,112,.08) 14px 15px);
  background-color: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.wp .ph .ph-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, "Courier New", monospace;
  font-size: 12px;
  color: var(--navy);
  background: rgba(255,255,255,.85);
  padding: 6px 10px;
  border-radius: 4px;
  letter-spacing: .02em;
  text-align: center;
  max-width: 80%;
  line-height: 1.3;
  border: 1px solid var(--border);
}
.wp .ph-dark {
  background-color: var(--navy);
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.04) 0 14px,
      rgba(255,255,255,.08) 14px 15px);
  border-color: var(--navy-deep);
}
.wp .ph-dark .ph-label { background: rgba(20,48,90,.85); color: #fff; border-color: var(--navy-deep); }

/* photo (real asset) */
.wp .photo { background: var(--soft); border-radius: var(--radius); overflow: hidden; position: relative; }
.wp .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* real photo — caption tag in corner */
.wp .photo.real .real-tag {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px; color: #fff;
  background: rgba(20,30,55,.66);
  padding: 5px 10px; border-radius: 4px;
  letter-spacing: .02em;
  max-width: calc(100% - 24px);
  backdrop-filter: blur(4px);
}

/* stock placeholder — designed paper-stack fallback if Unsplash 404s */
.wp .photo.stock { background: linear-gradient(135deg, #f4f6f9 0%, #e6ecf3 100%); }
.wp .photo.stock .stock-art {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.wp .photo.stock img { position: relative; z-index: 1; }
.wp .photo.stock .stock-tag {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px; color: #fff;
  background: rgba(20,30,55,.78);
  padding: 5px 10px; border-radius: 4px;
  letter-spacing: .02em;
  max-width: calc(100% - 24px);
}

/* — variant: press — dark machine body with bright ink-roller stripe */
.wp .stock-press { background: linear-gradient(160deg, #2a3142 0%, #1a2030 100%); }
.wp .stock-press .stock-art {
  background:
    /* roller highlights */
    linear-gradient(180deg, transparent 38%, rgba(255,255,255,.06) 38%, rgba(255,255,255,.06) 41%, transparent 41%,
                            transparent 50%, rgba(255,255,255,.04) 50%, rgba(255,255,255,.04) 53%, transparent 53%),
    /* ink band */
    linear-gradient(180deg, transparent 60%, #2a8dc4 60%, #2a8dc4 62%, transparent 62%,
                            transparent 64%, #1c4070 64%, #1c4070 66%, transparent 66%);
}
.wp .stock-press::after {
  content: ""; position: absolute; inset: 25% 12% 18% 12%;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 4px, transparent 4px 24px);
  border-radius: 4px;
  z-index: 0;
}

/* — variant: console — pale grey console with colour swatches */
.wp .stock-console { background: linear-gradient(180deg, #eef1f6 0%, #d8dfea 100%); }
.wp .stock-console .stock-art {
  background:
    linear-gradient(90deg,
      #2a8dc4 0%, #2a8dc4 16.66%,
      #1c4070 16.66%, #1c4070 33.33%,
      #5b6473 33.33%, #5b6473 50%,
      #e3e7ee 50%, #e3e7ee 66.66%,
      #cbd3e0 66.66%, #cbd3e0 83.33%,
      #f4f6f9 83.33%, #f4f6f9 100%);
  background-size: 100% 24%;
  background-position: center 78%;
  background-repeat: no-repeat;
}
.wp .stock-console::after {
  content: ""; position: absolute; inset: 22% 18% 36% 18%; z-index: 0;
  background:
    radial-gradient(circle at 25% 50%, #1c4070 0 6px, transparent 6px),
    radial-gradient(circle at 50% 50%, #2a8dc4 0 6px, transparent 6px),
    radial-gradient(circle at 75% 50%, #5b6473 0 6px, transparent 6px),
    #fff;
  border: 1px solid #c2cad8;
  border-radius: 4px;
}

/* — variant: paper — clean sheets stacked on a light surface */
.wp .stock-paper { background: linear-gradient(180deg, #ecf0f5 0%, #dde3ec 100%); }
.wp .stock-paper .stock-art {
  background:
    /* top sheet */
    linear-gradient(180deg, transparent 24%, #ffffff 24%, #ffffff 64%, transparent 64%),
    /* second sheet */
    linear-gradient(180deg, transparent 28%, rgba(0,0,0,.08) 28%, rgba(0,0,0,.08) 30%, transparent 30%),
    linear-gradient(180deg, transparent 70%, rgba(0,0,0,.05) 70%, rgba(0,0,0,.05) 72%, transparent 72%);
}
.wp .stock-paper::after {
  content: ""; position: absolute; inset: 30% 18% 30% 18%; z-index: 0;
  background:
    repeating-linear-gradient(0deg, rgba(28,64,112,.18) 0 1px, transparent 1px 14px),
    #fff;
  border: 1px solid #c2cad8;
  border-radius: 2px;
  box-shadow: 4px 4px 0 #fff, 4px 4px 0 1px #c2cad8, 8px 8px 0 #fff, 8px 8px 0 1px #c2cad8;
}

/* — variant: stack — tilted booklet stacks (NCR, invoice books) */
.wp .stock-stack { background: linear-gradient(180deg, #ecf0f5 0%, #dde3ec 100%); }
.wp .stock-stack::after {
  content: ""; position: absolute; left: 18%; right: 18%; top: 38%; bottom: 22%;
  z-index: 0;
  background:
    linear-gradient(180deg, #1c4070 0 14%, #fff 14% 28%, #2a8dc4 28% 42%, #fff 42% 56%, #f4d35e 56% 70%, #fff 70% 84%, #5b6473 84% 100%);
  border: 1px solid #c2cad8;
  border-radius: 2px;
  box-shadow: -6px -6px 0 #fff, -6px -6px 0 1px #c2cad8, -12px -12px 0 #fff, -12px -12px 0 1px #c2cad8;
  transform: rotate(-3deg);
}

/* — variant: finishing — guillotine blade descending on paper stack */
.wp .stock-finishing { background: linear-gradient(180deg, #2a3142 0%, #1a2030 100%); }
.wp .stock-finishing .stock-art {
  background:
    /* descending blade */
    linear-gradient(180deg, #c9d0dc 0%, #c9d0dc 22%, transparent 22%),
    linear-gradient(180deg, transparent 22%, #5b6473 22%, #5b6473 24%, transparent 24%);
}
.wp .stock-finishing::after {
  content: ""; position: absolute; left: 16%; right: 16%; top: 52%; bottom: 18%;
  z-index: 0;
  background:
    repeating-linear-gradient(0deg, #ffffff 0 6px, #e3e7ee 6px 8px);
  border: 1px solid #cbd3e0;
  border-left: 4px solid #2a8dc4;
}

/* — variant: digital — sheet feeder, lighter palette */
.wp .stock-digital { background: linear-gradient(180deg, #eef1f6 0%, #d8dfea 100%); }
.wp .stock-digital .stock-art {
  background:
    linear-gradient(180deg, transparent 18%, #1c4070 18%, #1c4070 36%, transparent 36%),
    linear-gradient(180deg, transparent 38%, #2a8dc4 38%, #2a8dc4 40%, transparent 40%);
}
.wp .stock-digital::after {
  content: ""; position: absolute; left: 22%; right: 22%; top: 48%; bottom: 22%;
  z-index: 0;
  background:
    linear-gradient(180deg, #fff 0 12%, transparent 12% 14%, #fff 14% 26%, transparent 26% 28%, #fff 28% 40%, transparent 40% 42%, #fff 42% 54%, transparent 54% 56%, #fff 56% 68%, transparent 68% 70%, #fff 70% 82%, transparent 82% 84%, #fff 84% 100%);
  border: 1px solid #c2cad8;
  border-radius: 2px;
}

/* — variant: floor — shop-floor scene, navy roof + light floor */
.wp .stock-floor { background: linear-gradient(180deg, #1c4070 0%, #1c4070 28%, #ecf0f5 28%, #dde3ec 100%); }
.wp .stock-floor::after {
  content: ""; position: absolute; left: 12%; right: 12%; top: 38%; bottom: 18%;
  z-index: 0;
  background:
    /* press silhouette */
    linear-gradient(180deg, #2a3142 0%, #2a3142 80%, transparent 80%),
    /* operator */
    radial-gradient(circle at 78% 70%, #1c4070 0 14px, transparent 14px);
  background-blend-mode: normal;
  border-radius: 2px;
}
.wp .stock-floor .stock-art {
  background:
    linear-gradient(180deg, transparent 0%, transparent 22%, rgba(42,141,196,.18) 22%, rgba(42,141,196,.18) 28%, transparent 28%);
}

/* welcome block (home) */
.wp .welcome { padding: 88px 0 56px; background: #fff; }
.wp .welcome .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.wp .welcome h2 { margin-bottom: 8px; font-size: 36px; }
.wp .welcome .eyebrow { display: block; margin-bottom: 14px; }
.wp .welcome-body p { font-size: 18px; color: var(--text); line-height: 1.65; margin-bottom: 18px; max-width: 580px; }
.wp .welcome-body p:last-child { margin-bottom: 0; color: var(--muted); }

/* closing CTA strip (home) */
.wp .close-cta { padding: 80px 0; background: var(--soft); border-top: 1px solid var(--border); }
.wp .close-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.wp .close-cta h2 { margin-bottom: 8px; }
.wp .close-cta p { color: var(--muted); font-size: 17px; }
.wp .close-cta .close-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* at-work gallery (about) */
.wp .gallery { padding: 96px 0; background: var(--soft); }
.wp .gallery .section-head { margin-bottom: 40px; }
.wp .gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; gap: 14px; }
.wp .gallery-grid .photo { width: 100%; height: 100%; }
.wp .gallery-grid .g-tall { grid-column: span 2; grid-row: span 2; }
.wp .gallery-grid .g-wide { grid-column: span 3; grid-row: span 1; }
.wp .gallery-grid .g-sm { grid-column: span 2; grid-row: span 1; }
.wp .gallery-grid .g-md { grid-column: span 2; grid-row: span 2; }

/* mobile additions */

/* ── hero variants ─────────────────────────── */
.wp .hero { padding: 96px 0 88px; background: #fff; }
.wp .hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.wp .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  font-size: var(--t-eyebrow);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}
.wp .hero-eyebrow::before { content: ""; display: block; width: 28px; height: 1px; background: var(--blue); }
.wp .hero h1 { margin-bottom: 24px; }
.wp .hero-tagline {
  display: block;
  font-size: 18px;
  color: var(--blue);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.wp .hero-lead { font-size: 19px; color: var(--muted); margin-bottom: 36px; max-width: 480px; text-wrap: pretty; }
.wp .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.wp .hero-photo { aspect-ratio: 4 / 5; }

/* Hero variant B — full-bleed photo with navy overlay */
.wp .hero-b {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  min-height: 580px;
}
.wp .hero-b .hero-b-bg {
  position: absolute; inset: 0;
  background-image: url("../assets/pantone-fan.jpg");
  background-size: cover; background-position: center;
  opacity: .55;
}
.wp .hero-b .hero-b-tint {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(20,48,90,.92) 30%, rgba(20,48,90,.55) 65%, rgba(20,48,90,.2) 100%);
}
.wp .hero-b .container { position: relative; z-index: 1; min-height: 580px; display: flex; align-items: center; padding-top: 80px; padding-bottom: 80px; }
.wp .hero-b-inner { max-width: 640px; }
.wp .hero-b h1 { color: #fff; }
.wp .hero-b .hero-eyebrow { color: var(--blue-soft); }
.wp .hero-b .hero-eyebrow::before { background: var(--blue-soft); }
.wp .hero-b .hero-lead { color: rgba(255,255,255,.85); }

/* Hero variant C — split heritage block */
.wp .hero-c { background: #fff; }
.wp .hero-c .container { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; padding: 0; max-width: none; }
.wp .hero-c-text {
  background: var(--navy);
  color: #fff;
  padding: 92px 64px 92px var(--pad-x);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.wp .hero-c-text h1 { color: #fff; }
.wp .hero-c-text .hero-lead { color: rgba(255,255,255,.78); }
.wp .hero-c-text .hero-eyebrow { color: var(--blue-soft); }
.wp .hero-c-text .hero-eyebrow::before { background: var(--blue-soft); }
.wp .hero-c-stamp {
  position: absolute; top: 36px; right: 36px;
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.wp .hero-c-photo {
  background: var(--soft);
  min-height: 580px;
}
.wp .hero-c-photo .ph, .wp .hero-c-photo .photo { width: 100%; height: 100%; border-radius: 0; border: 0; }

/* ── section ───────────────────────────────── */
.wp .section { padding: 96px 0; }
.wp .section-soft { background: var(--soft); }
.wp .section-navy { background: var(--navy); color: #fff; }
.wp .section-navy h2, .wp .section-navy h3 { color: #fff; }
.wp .section-head { margin-bottom: 56px; max-width: 720px; }
.wp .section-head .eyebrow { margin-bottom: 14px; display: block; }
.wp .section-head h2 { margin-bottom: 16px; }
.wp .section-head p { color: var(--muted); font-size: var(--t-lead); }
.wp .section-navy .section-head p { color: rgba(255,255,255,.78); }

/* ── service cards (3-up) ─────────────────── */
.wp .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wp .svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: border .15s, transform .15s, box-shadow .2s;
}
.wp .svc-card:hover { border-color: var(--navy); box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.wp .svc-card .svc-num {
  font-size: 12px; font-weight: 600; color: var(--blue);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 24px;
}
.wp .svc-card h3 { margin-bottom: 10px; font-size: 24px; }
.wp .svc-card p { color: var(--muted); font-size: 15px; flex: 1; margin-bottom: 24px; }
.wp .svc-card .svc-link { color: var(--navy); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.wp .svc-card .svc-link .arrow { transition: transform .15s; }
.wp .svc-card:hover .svc-link .arrow { transform: translateX(3px); }

/* ── what we print grid ────────────────────── */
.wp .print-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.wp .print-cell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: border .15s, background .15s;
  font-size: 15px;
}
.wp .print-cell:hover { border-color: var(--blue); background: var(--soft); }
.wp .print-cell .dot {
  width: 8px; height: 8px; flex: 0 0 auto;
  border-radius: 2px;
  background: var(--blue);
}
.wp .print-cell .label { color: var(--text); font-weight: 500; }

/* ── why panel ─────────────────────────────── */
.wp .why { background: var(--navy); color: #fff; }
.wp .why .container { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: center; }
.wp .why h2 { color: #fff; margin-bottom: 18px; }
.wp .why-lead { color: rgba(255,255,255,.78); font-size: 17px; }
.wp .why-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.wp .why-item .why-no { font-size: 36px; font-weight: 700; color: var(--blue-soft); letter-spacing: -.03em; line-height: 1; margin-bottom: 14px; }
.wp .why-item h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.wp .why-item p { color: rgba(255,255,255,.7); font-size: 14px; }

/* ── footer ────────────────────────────────── */
.wp .footer { background: #fff; border-top: 1px solid var(--border); padding: 72px 0 32px; }
.wp .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.wp .footer-brand { max-width: 280px; }
.wp .footer-brand .brand { margin-bottom: 18px; }
.wp .footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.wp .footer h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; font-weight: 600; }
.wp .footer ul { display: flex; flex-direction: column; gap: 10px; }
.wp .footer li { color: var(--muted); font-size: 14px; }
.wp .footer li a:hover { color: var(--navy); }
.wp .footer .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; }
.wp .footer .footer-bottom .fb-right { display: flex; gap: 24px; }

/* ── services page ─────────────────────────── */
.wp .pagehead { background: var(--soft); padding: 72px 0 64px; border-bottom: 1px solid var(--border); }
.wp .pagehead h1 { font-size: 48px; margin-bottom: 14px; }
.wp .pagehead .lead { max-width: 640px; font-size: 18px; }
.wp .pagehead .crumb { color: var(--muted); font-size: 13px; margin-bottom: 22px; }
.wp .pagehead .crumb a { color: var(--blue); }

.wp .svc-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}
.wp .svc-row.reverse .svc-row-text { order: 2; }
.wp .svc-row.reverse .svc-row-photo { order: 1; }
.wp .svc-row:last-of-type { border-bottom: 0; }
.wp .svc-row .svc-row-photo { aspect-ratio: 5 / 4; }
.wp .svc-row h2 { margin-bottom: 18px; }
.wp .svc-row .lead { margin-bottom: 28px; max-width: 460px; }
.wp .svc-row ul.bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.wp .svc-row ul.bullets li { font-size: 15px; color: var(--text); display: flex; align-items: flex-start; gap: 10px; }
.wp .svc-row ul.bullets li::before {
  content: ""; width: 6px; height: 6px; margin-top: 9px; flex: 0 0 auto;
  background: var(--blue); border-radius: 1px;
}

/* ── cta strip ─────────────────────────────── */
.wp .cta-strip { background: var(--navy); color: #fff; padding: 64px 0; }
.wp .cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.wp .cta-strip h2 { color: #fff; margin-bottom: 8px; max-width: 560px; }
.wp .cta-strip p { color: rgba(255,255,255,.8); font-size: 16px; }
.wp .cta-strip .cta-strip-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ── about ─────────────────────────────────── */
.wp .about-main { padding: 96px 0; }
.wp .about-main .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.wp .about-prose { font-size: 17px; color: var(--text); line-height: 1.7; }
.wp .about-prose p { margin-bottom: 18px; }
.wp .about-prose .lead { font-size: 22px; color: var(--navy); line-height: 1.4; margin-bottom: 32px; font-weight: 500; }
.wp .about-side { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 24px; }
.wp .about-side .ph { aspect-ratio: 4 / 5; }
.wp .about-fact {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px;
}
.wp .about-fact dt { font-size: 12px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.wp .about-fact dd { font-size: 15px; color: var(--text); font-weight: 500; }

.wp .equipment { background: var(--soft); padding: 96px 0; }
.wp .equipment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.wp .equipment-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.wp .equipment-card h3 { font-size: 18px; margin-bottom: 8px; }
.wp .equipment-card p { color: var(--muted); font-size: 14px; }
.wp .equipment-card .eq-tag { display: inline-block; font-size: 11px; color: var(--blue); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }

/* ── contact ───────────────────────────────── */
.wp .contact-main { padding: 88px 0; }
.wp .contact-main .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.wp .contact-info h2 { font-size: 36px; margin-bottom: 16px; }
.wp .contact-info .lead { margin-bottom: 36px; max-width: 380px; }
.wp .contact-row { display: flex; align-items: flex-start; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.wp .contact-row:last-child { border-bottom: 0; }
.wp .contact-row .ci-icon {
  width: 40px; height: 40px; border-radius: 8px; background: var(--soft);
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
  color: var(--navy); font-size: 18px; font-weight: 700;
}
.wp .contact-row .ci-meta { flex: 1; }
.wp .contact-row .ci-label { font-size: 12px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }
.wp .contact-row .ci-value { font-size: 17px; color: var(--navy); font-weight: 600; }
.wp .contact-row .ci-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }

.wp .form-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-soft);
}
.wp .form-card h3 { font-size: 22px; margin-bottom: 6px; }
.wp .form-card .form-sub { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.wp .form-row { margin-bottom: 18px; }
.wp .form-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wp .form-row label { display: block; font-size: 13px; color: var(--text); font-weight: 600; margin-bottom: 6px; }
.wp .form-row input, .wp .form-row textarea, .wp .form-row select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border-2); border-radius: 6px;
  background: #fff; font: inherit; font-size: 15px; color: var(--text); transition: border .15s, box-shadow .15s;
}
.wp .form-row input:focus, .wp .form-row textarea:focus, .wp .form-row select:focus {
  outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(42,141,196,.15);
}
.wp .form-row textarea { resize: vertical; min-height: 130px; }
.wp .form-card .form-actions { display: flex; gap: 12px; align-items: center; margin-top: 8px; }
.wp .form-card .form-note { font-size: 12px; color: var(--muted); }

.wp .map-strip { background: var(--soft); }
.wp .map-strip .map { aspect-ratio: 16 / 5; }

/* ── mobile (artboards rendered at 375) ──── */

/* ── responsive (mobile under 768px) ─── */
@media (max-width: 768px) {
  .wp .welcome { padding: 56px 0 32px; }
  .wp .welcome .container { grid-template-columns: 1fr; gap: 24px; }
  .wp .welcome h2 { font-size: 28px; }
  .wp .close-cta { padding: 56px 0; }
  .wp .close-cta .container { flex-direction: column; align-items: flex-start; gap: 24px; }
  .wp .close-cta .close-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .wp .gallery { padding: 56px 0; }
  .wp .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .wp .gallery-grid .g-tall, .wp .gallery-grid .g-wide, .wp .gallery-grid .g-md { grid-column: span 2; grid-row: span 1; }
  .wp .gallery-grid .g-sm { grid-column: span 1; grid-row: span 1; }
  .wp { --t-hero: 40px; --t-h1: 34px; --t-h2: 26px; --t-h3: 19px; --t-body: 16px; --t-lead: 17px; --pad-x: 22px; --container: 100%; }
  .wp .header-inner { height: 64px; gap: 12px; }
  .wp .brand-mark { width: 36px; height: 36px; }
  .wp .brand-name { font-size: 15px; }
  .wp .brand-sub { font-size: 10px; }
  .wp .nav { display: none; }
  .wp .header-cta .header-phone { display: none; }
  .wp .header-cta .btn { padding: 10px 14px; font-size: 14px; }
  .wp .hamburger {
  display: inline-flex; flex-direction: column; gap: 4px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 6px; background: #fff;
}
  .wp .hamburger span { width: 16px; height: 1.5px; background: var(--navy); }
  .wp .hero { padding: 56px 0 48px; }
  .wp .hero .container { grid-template-columns: 1fr; gap: 36px; }
  .wp .hero-photo { aspect-ratio: 4 / 3; }
  .wp .hero-cta { flex-direction: column; align-items: stretch; }
  .wp .hero-cta .btn { justify-content: center; }
  .wp .hero-b { min-height: 480px; }
  .wp .hero-b .container { min-height: 480px; padding-top: 48px; padding-bottom: 48px; }
  .wp .hero-c .container { grid-template-columns: 1fr; }
  .wp .hero-c-text { padding: 56px var(--pad-x); }
  .wp .hero-c-stamp { top: 22px; right: 22px; font-size: 10px; padding: 6px 10px; }
  .wp .hero-c-photo { min-height: 280px; }
  .wp .section { padding: 56px 0; }
  .wp .section-head { margin-bottom: 32px; }
  .wp .svc-grid { grid-template-columns: 1fr; gap: 14px; }
  .wp .svc-card { padding: 24px; }
  .wp .print-grid { grid-template-columns: repeat(2, 1fr); }
  .wp .print-cell { padding: 16px 14px; font-size: 14px; }
  .wp .why .container { grid-template-columns: 1fr; gap: 36px; }
  .wp .why-list { grid-template-columns: 1fr; gap: 20px; }
  .wp .footer { padding: 48px 0 24px; }
  .wp .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .wp .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .wp .pagehead { padding: 48px 0 40px; }
  .wp .pagehead h1 { font-size: 32px; }
  .wp .svc-row { grid-template-columns: 1fr; gap: 24px; padding: 56px 0; }
  .wp .svc-row.reverse .svc-row-text { order: 1; }
  .wp .svc-row.reverse .svc-row-photo { order: 0; }
  .wp .svc-row ul.bullets { grid-template-columns: 1fr; }
  .wp .cta-strip { padding: 48px 0; }
  .wp .cta-strip .container { flex-direction: column; align-items: flex-start; gap: 28px; }
  .wp .cta-strip .cta-strip-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .wp .about-main { padding: 56px 0; }
  .wp .about-main .container { grid-template-columns: 1fr; gap: 36px; }
  .wp .about-side { position: static; }
  .wp .about-prose .lead { font-size: 19px; }
  .wp .equipment { padding: 56px 0; }
  .wp .equipment-grid { grid-template-columns: 1fr; gap: 14px; }
  .wp .contact-main { padding: 56px 0; }
  .wp .contact-main .container { grid-template-columns: 1fr; gap: 36px; }
  .wp .form-card { padding: 24px; }
  .wp .form-row.split { grid-template-columns: 1fr; }
}

/* ── mobile menu drawer ─────────────────────── */
.wp .hamburger { display: none; }
@media (max-width: 768px) {
  .wp .hamburger {
    display: inline-flex; flex-direction: column; gap: 4px;
    width: 36px; height: 36px; align-items: center; justify-content: center;
    border: 1px solid var(--border); border-radius: 6px; background: #fff;
  }
  .wp .hamburger span { width: 16px; height: 1.5px; background: var(--navy); transition: transform .2s; }
  .wp .nav-drawer {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 8px 22px 16px;
    box-shadow: 0 6px 20px rgba(20,30,55,.08);
    z-index: 10;
  }
  .wp .nav-drawer.is-open { display: block; }
  .wp .nav-drawer a {
    display: block; padding: 14px 0; font-size: 17px; font-weight: 500; color: var(--text);
    border-bottom: 1px solid var(--border);
  }
  .wp .nav-drawer a:last-child { border-bottom: 0; }
  .wp .nav-drawer a.active { color: var(--navy); font-weight: 600; }
  .wp .nav-drawer .drawer-phone { padding: 16px 0 4px; color: var(--muted); font-size: 14px; }
  .wp .nav-drawer .drawer-phone strong { color: var(--navy); font-weight: 600; }
  .wp .hamburger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .wp .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .wp .hamburger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
}

/* ── focus styles ─────────────────────────── */
.wp :focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
.wp .btn:focus-visible { outline-offset: 3px; }

/* ── skip link ────────────────────────────── */
.wp .skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 6px;
  font-weight: 600; z-index: 100;
}
.wp .skip-link:focus { left: 8px; }

/* ── form success / error states ──────────── */
.wp .form-success {
  background: #e8f5e9; border: 1px solid #a5d6a7; color: #1b5e20;
  padding: 14px 18px; border-radius: 6px; margin-bottom: 18px;
  font-size: 15px;
}
.wp .form-error {
  background: #ffebee; border: 1px solid #ef9a9a; color: #b71c1c;
  padding: 14px 18px; border-radius: 6px; margin-bottom: 18px;
  font-size: 15px;
}

/* ── visually hidden (for screen readers) ─── */
.wp .visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── thanks panel (replaces form on successful submit) ── */
.wp .form-thanks {
  text-align: center;
  padding: 32px 16px 24px;
}
.wp .form-thanks-icon {
  width: 88px; height: 88px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  display: flex; align-items: center; justify-content: center;
}
.wp .form-thanks h3 {
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--navy);
}
.wp .form-thanks p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto 16px;
}
.wp .form-thanks p strong { color: var(--text); }
.wp .form-thanks-actions { margin-top: 24px; }
.wp .form-thanks:focus { outline: none; }
