/* ═══════════════════════════════════════════════════════
   PRINTING CHEAP — CSS v4 (rebuilt from scratch)
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1B59A6;
  --navy-dark: #0D1B2A;
  --blue:      #0CB5F0;
  --blue-h:    #0099D4;
  --blue-10:   rgba(12,181,240,.10);
  --red:       #EB1C24;
  --white:     #ffffff;
  --off:       #f7f8fa;
  --border:    rgba(13,27,42,.12);
  --mid:       #8a9bb0;
  --text:      #1e2d3d;
  --text-50:   rgba(30,45,61,.5);
  --font-disp: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --r:    6px;
  --rl:   12px;
  --ease: cubic-bezier(.16,1,.3,1);
  --ease2:cubic-bezier(.4,0,.2,1);
  --header-h: 68px;
  --max: 1280px;
  --px: clamp(1rem, 5vw, 3.5rem);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
address { font-style: normal; }
abbr[title] { text-decoration: none; color: var(--blue); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }

/* ── Tags & buttons ── */
.section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: .75rem; }
.section-tag--light { color: rgba(255,255,255,.6); }

.btn-primary { display: inline-flex; align-items: center; gap: 7px; background: var(--navy); color: var(--white); font-family: var(--font-body); font-size: 13.5px; font-weight: 600; letter-spacing: .04em; padding: 11px 24px; border-radius: var(--r); border: 2px solid var(--navy); cursor: pointer; transition: all .2s var(--ease); text-decoration: none; }
.btn-primary:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(12,181,240,.3); }
.btn-outline  { display: inline-flex; align-items: center; gap: 7px; background: transparent; color: var(--navy); font-family: var(--font-body); font-size: 13.5px; font-weight: 600; padding: 11px 24px; border-radius: var(--r); border: 2px solid var(--border); cursor: pointer; transition: all .2s var(--ease); text-decoration: none; }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.12); color: var(--white); font-family: var(--font-body); font-size: 14px; font-weight: 500; padding: 12px 28px; border-radius: var(--r); border: 1.5px solid rgba(255,255,255,.3); cursor: pointer; transition: all .2s var(--ease); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-1px); }

/* ════════════════ HEADER ════════════════ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--header-h); background: transparent; transition: background .3s var(--ease2), box-shadow .3s var(--ease2); }
.site-header.scrolled { background: var(--white); box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,.06); }
.site-header.scrolled .main-nav a, .site-header.scrolled .header-phone { color: var(--text); }
.site-header.scrolled .burger span { background: var(--navy); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.logo img { height: 36px; width: auto; display: block; }
.main-nav { flex: 1; }
.main-nav ul { display: flex; }
.main-nav a { display: block; padding: 8px 11px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.9); transition: color .2s; position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: 3px; left: 11px; right: 11px; height: 2px; background: var(--blue); transform: scaleX(0); transition: transform .2s var(--ease); }
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.9); transition: color .2s; }
.header-phone:hover { color: var(--blue); }
.btn-cta { background: var(--blue); color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: .04em; padding: 9px 20px; border-radius: var(--r); border: 2px solid var(--blue); transition: all .2s var(--ease); }
.btn-cta:hover { background: var(--blue-h); border-color: var(--blue-h); }
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0; }
.burger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: all .25s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════ HERO ════════════════ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background: var(--bg) center/cover no-repeat; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(13,27,42,.88) 0%, rgba(13,27,42,.6) 60%, rgba(13,27,42,.3) 100%); }
.hero-content { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; width: 100%; padding: calc(var(--header-h) + 5rem) var(--px) 6rem; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp .6s .2s var(--ease) forwards; }
.dot { width: 5px; height: 5px; background: var(--blue); border-radius: 50%; }
.hero-title { font-family: var(--font-disp); font-size: clamp(5rem,14vw,12rem); font-weight: 800; line-height: .9; color: var(--white); margin-bottom: 1.5rem; display: flex; flex-direction: column; opacity: 0; animation: fadeUp .7s .3s var(--ease) forwards; }
.hero-title .line2 { color: var(--blue); }
.hero-sub { font-size: clamp(.95rem,1.6vw,1.1rem); font-weight: 300; color: rgba(255,255,255,.78); max-width: 520px; line-height: 1.7; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp .7s .55s var(--ease) forwards; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 3rem; opacity: 0; animation: fadeUp .7s .7s var(--ease) forwards; }
.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; opacity: 0; animation: fadeUp .7s .85s var(--ease) forwards; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-disp); font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat span { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.15); }
.hero-dots { position: absolute; bottom: 2.5rem; left: var(--px); display: flex; gap: 8px; z-index: 2; }
.hero-dot { width: 28px; height: 3px; background: rgba(255,255,255,.3); border: none; border-radius: 2px; cursor: pointer; transition: all .3s; padding: 0; }
.hero-dot.active { background: var(--blue); width: 44px; }

/* ════════════════ SERVICES ════════════════ */
.services-section { padding: clamp(4rem,8vw,8rem) 0; background: var(--off); }
.section-intro { max-width: 680px; margin-bottom: clamp(2.5rem,5vw,4rem); }
.section-intro h2 { font-family: var(--font-disp); font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 700; line-height: .96; color: var(--navy-dark); margin-bottom: .75rem; }
.section-sub { font-size: 15px; font-weight: 300; color: var(--text-50); line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5px; background: var(--border); border: 1.5px solid var(--border); border-radius: var(--rl); overflow: hidden; }
.svc-card { background: var(--white); display: flex; flex-direction: column; cursor: pointer; transition: background .2s; }
.svc-card:hover { background: #f0f7ff; }
.svc-card--featured { position: relative; }
.svc-card--featured::after { content: 'Popular'; position: absolute; top: 10px; right: 10px; z-index: 2; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--white); background: var(--blue); padding: 3px 9px; border-radius: 100px; }
.svc-img { aspect-ratio: 4/3; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-body { padding: 1rem 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.svc-body h3 { font-size: 14.5px; font-weight: 600; color: var(--navy-dark); line-height: 1.3; }
.svc-body p { font-size: 12.5px; color: var(--text-50); line-height: 1.55; flex: 1; }
.svc-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 6px; font-size: 12px; font-weight: 600; color: var(--blue); transition: gap .2s; }
.svc-card:hover .svc-link { gap: 8px; }
.services-cta-row { margin-top: 2.5rem; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ════════════════ ABOUT ════════════════ */
.about-band { padding: clamp(4rem,8vw,8rem) 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,6rem); align-items: start; }
.about-img-col { position: relative; }
.about-img-col img { width: 100%; height: auto; display: block; border-radius: var(--rl); }
.about-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--navy-dark); color: var(--white); border-radius: var(--r); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.about-badge svg { color: var(--blue); flex-shrink: 0; }
.about-badge span { font-size: 13px; font-weight: 500; line-height: 1.4; }
.about-content h2 { font-family: var(--font-disp); font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; line-height: .96; color: var(--navy-dark); margin-bottom: 1.25rem; }
.about-content p { font-size: 14.5px; font-weight: 300; color: var(--text-50); line-height: 1.75; margin-bottom: .9rem; max-width: 480px; }
.about-content p strong { font-weight: 600; color: var(--text); }
.about-points { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 8px; }
.about-point { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text); }
.about-point svg { color: var(--blue); flex-shrink: 0; }

/* ════════════════ FORMS ════════════════ */
.quick-enquiry { padding: clamp(4rem,8vw,8rem) 0; background: var(--navy-dark); }
.qe-inner { display: grid; grid-template-columns: 380px 1fr; gap: clamp(3rem,6vw,6rem); align-items: start; }
.qe-header h2 { font-family: var(--font-disp); font-size: clamp(2.2rem,4.5vw,3.5rem); font-weight: 700; line-height: .96; color: var(--white); margin-bottom: 1rem; }
.qe-header p { font-size: 14.5px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 2rem; }
.qe-header a { color: var(--blue); }
.qe-contact { display: flex; flex-direction: column; }
.qe-contact a { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.7); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07); transition: color .2s; }
.qe-contact a:last-child { border-bottom: none; }
.qe-contact a:hover { color: var(--blue); }
.qe-contact svg { color: var(--blue); flex-shrink: 0; }

/* ─── Form shared styles ─── */
.qe-form, .page-form {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--rl);
  padding: clamp(1.5rem,3vw,2rem);
}
.page-form {
  background: var(--white);
  border-color: var(--border);
  max-width: 860px;
  margin: 0 auto;
}

/* honeypot */
.hp-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }

/* ─── Field group ─── */
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.fg label { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.8); }
.page-form .fg label { color: var(--navy-dark); }

/* ─── All inputs, textarea ─── */
.fg input,
.fg textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--r);
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.35); }
.fg input:focus, .fg textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12,181,240,.2);
  background: rgba(255,255,255,.1);
}
.fg textarea { resize: vertical; min-height: 120px; }

/* ─── Page form (light background) inputs ─── */
.page-form .fg input,
.page-form .fg textarea {
  color: var(--text);
  background: var(--off);
  border-color: var(--border);
}
.page-form .fg input::placeholder,
.page-form .fg textarea::placeholder { color: var(--mid); }
.page-form .fg input:focus,
.page-form .fg textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--blue-10);
}

/* ─── SELECT — clean cross-browser solution ─── */
/*
   We DO NOT use background-image or appearance:none tricks.
   Instead: hide native arrow with padding+overflow, show our own via ::after.
*/
.fg select {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--r);
  padding: 11px 44px 11px 14px;
  width: 100%;
  outline: none;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  /* Hide native arrow in all browsers */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.fg select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12,181,240,.2);
  background: rgba(255,255,255,.1);
}
/* Page-form selects (light bg) */
.page-form .fg select {
  color: var(--text);
  background: var(--off);
  border-color: var(--border);
}
.page-form .fg select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--blue-10);
}
/* Select wrapper — provides the arrow */
.sel-wrap {
  position: relative;
  display: block;
}
.sel-wrap select {
  width: 100%;
}
/* Arrow — pure CSS, no image, no SVG, works everywhere */
.sel-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255,255,255,.7);
  border-bottom: 2px solid rgba(255,255,255,.7);
  transform: rotate(45deg);
  pointer-events: none;
}
.page-form .sel-wrap::after {
  border-right-color: var(--navy);
  border-bottom-color: var(--navy);
}

/* ─── Invalid state ─── */
.fg.invalid input,
.fg.invalid select,
.fg.invalid textarea {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(235,28,36,.12);
}
.ferr { font-size: 11.5px; color: #fc8181; min-height: 16px; }
.page-form .ferr { color: var(--red); }

/* ─── Checkbox ─── */
.fg-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1rem; }
.fg-check input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; cursor: pointer; }
.fg-check label { font-size: 13px; color: rgba(255,255,255,.65); cursor: pointer; line-height: 1.5; }
.page-form .fg-check label { color: var(--text-50); }
.fg-check a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

/* ─── Captcha ─── */
.fg-captcha { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 8px; }
.fg-captcha label { flex-shrink: 0; }
.captcha-q { font-weight: 700; color: var(--blue); }
.fg-captcha input { width: 80px !important; }

/* ─── Range slider ─── */
.range-wrap { display: flex; flex-direction: column; gap: 6px; }
.range-wrap input[type="range"] { width: 100%; accent-color: var(--blue); cursor: pointer; }
.range-label { font-size: 13px; font-weight: 700; color: var(--blue); }

/* ─── File drop ─── */
.file-drop-zone { position: relative; border: 2px dashed rgba(255,255,255,.2); border-radius: var(--r); padding: 1.5rem; text-align: center; cursor: pointer; transition: border-color .2s, background .2s; }
.file-drop-zone:hover, .file-drop-zone.drag-over { border-color: var(--blue); background: rgba(12,181,240,.05); }
.file-drop-zone input[type="file"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-drop-zone svg { color: rgba(255,255,255,.3); margin: 0 auto 8px; }
.file-drop-zone p { font-size: 13px; color: rgba(255,255,255,.5); }
.file-drop-zone p span { color: var(--blue); font-weight: 500; }
.file-drop-zone small { font-size: 11px; color: rgba(255,255,255,.3); }
.page-form .file-drop-zone { border-color: var(--border); }
.page-form .file-drop-zone svg { color: var(--mid); }
.page-form .file-drop-zone p { color: var(--text-50); }
.file-list { margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
.file-item { display: flex; align-items: center; justify-content: space-between; font-size: 12px; background: rgba(12,181,240,.1); border-radius: var(--r); padding: 5px 10px; color: rgba(255,255,255,.8); }
.page-form .file-item { color: var(--text); }
.file-item button { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.4); font-size: 16px; line-height: 1; padding: 0 2px; transition: color .15s; }
.file-item button:hover { color: var(--red); }

/* ─── Submit button ─── */
.btn-submit { width: 100%; padding: 13px; background: var(--blue); color: var(--white); font-family: var(--font-body); font-size: 14px; font-weight: 700; letter-spacing: .08em; border: none; border-radius: var(--r); cursor: pointer; transition: background .2s, transform .2s; margin-top: 1.25rem; }
.btn-submit:hover:not(:disabled) { background: var(--blue-h); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-loading { display: none; }
.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loading { display: block; }

/* ─── Success ─── */
.form-success { display: none; align-items: center; gap: 10px; margin-top: 1rem; padding: .9rem 1.25rem; background: rgba(12,181,240,.12); border: 1.5px solid rgba(12,181,240,.4); border-radius: var(--r); color: var(--blue); font-size: 14px; font-weight: 500; }
.page-form .form-success { background: var(--blue-10); border-color: var(--blue); color: #075985; }
.form-success.show { display: flex; }

/* ════════════════ LOCAL SECTION ════════════════ */
.local-section { padding: clamp(4rem,8vw,7rem) 0; background: var(--off); }
.local-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem,5vw,5rem); align-items: start; }
.local-info h2 { font-family: var(--font-disp); font-size: clamp(2rem,4vw,3rem); font-weight: 700; line-height: .96; color: var(--navy-dark); margin-bottom: 1rem; }
.local-info > p { font-size: 14.5px; font-weight: 300; color: var(--text-50); line-height: 1.75; margin-bottom: 2rem; max-width: 380px; }
.local-address { display: flex; flex-direction: column; }
.local-row { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.local-row:last-child { border-bottom: none; }
.local-row svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.local-row > div { display: flex; flex-direction: column; gap: 2px; }
.local-row strong { font-size: 12.5px; font-weight: 600; color: var(--navy-dark); text-transform: uppercase; letter-spacing: .06em; }
.local-row span, .local-row a { font-size: 14px; color: var(--text-50); transition: color .2s; }
.local-row a:hover { color: var(--blue); }
.local-map { aspect-ratio: 4/3; border-radius: var(--rl); overflow: hidden; border: 1.5px solid var(--border); box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.local-map iframe { width: 100%; height: 100%; display: block; }

/* ════════════════ FOOTER ════════════════ */
.site-footer { background: var(--navy-dark); padding-top: clamp(3rem,6vw,5rem); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: clamp(2rem,5vw,4rem); padding-bottom: clamp(2rem,4vw,3rem); border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand img { height: 34px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 1.25rem; max-width: 280px; }
.footer-brand address { font-size: 13px; line-height: 1.9; color: rgba(255,255,255,.4); }
.footer-brand address a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-brand address a:hover { color: var(--white); }
.footer-nav h3 { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .9rem; }
.footer-nav ul { display: flex; flex-direction: column; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,.45); padding: 4px 0; display: block; transition: color .2s; }
.footer-nav a:hover { color: var(--blue); }
.footer-bottom { padding: 1.25rem var(--px); }
.footer-bottom p { font-size: 11.5px; color: rgba(255,255,255,.2); text-align: center; line-height: 1.7; }

/* ════════════════ PAGE HERO (inner pages) ════════════════ */
.page-hero { padding: calc(var(--header-h) + 3.5rem) 0 3rem; background: var(--navy-dark); }
.page-hero .breadcrumb { display: flex; gap: 6px; align-items: center; font-size: 12px; color: rgba(255,255,255,.35); margin-bottom: 1.25rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.page-hero .breadcrumb a:hover { color: var(--blue); }
.page-hero h1 { font-family: var(--font-disp); font-size: clamp(2.5rem,7vw,5.5rem); font-weight: 800; line-height: .95; color: var(--white); margin: .5rem 0 1rem; }
.page-hero h1 em { font-style: normal; color: var(--blue); }
.page-hero p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.6); max-width: 520px; line-height: 1.7; }
.site-header.always-scrolled { background: var(--white) !important; box-shadow: 0 1px 0 var(--border) !important; }
.site-header.always-scrolled .main-nav a { color: var(--text-50); }
.site-header.always-scrolled .main-nav a:hover { color: var(--navy-dark); }
.site-header.always-scrolled .header-phone { color: var(--navy-dark); }
.site-header.always-scrolled .burger span { background: var(--navy-dark); }

/* ════════════════ SERVICES PAGE ════════════════ */
.svc-detail { padding: clamp(3rem,6vw,5rem) 0; }
.svc-detail:nth-child(even) { background: var(--off); }
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,5vw,5rem); align-items: center; }
.svc-detail-grid.rev .svc-det-img { order: -1; }
.svc-det-img { border-radius: var(--rl); overflow: hidden; }
.svc-det-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s var(--ease); }
.svc-det-img:hover img { transform: scale(1.04); }
.svc-num { font-family: var(--font-disp); font-size: 4rem; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: .25rem; }
.svc-det-content h2 { font-family: var(--font-disp); font-size: clamp(2rem,4vw,3rem); font-weight: 700; line-height: .96; color: var(--navy-dark); margin-bottom: 1rem; }
.svc-det-content p { font-size: 14.5px; font-weight: 300; color: var(--text-50); line-height: 1.75; margin-bottom: 1.25rem; max-width: 440px; }
.svc-items { list-style: none; margin-bottom: 1.75rem; }
.svc-items li { font-size: 13.5px; color: var(--text); padding: 7px 0 7px 18px; border-bottom: 1px solid var(--border); position: relative; }
.svc-items li::before { content: ''; position: absolute; left: 0; top: 50%; width: 8px; height: 2px; background: var(--blue); transform: translateY(-50%); }
.cta-band { background: var(--navy-dark); padding: clamp(4rem,8vw,7rem) 0; text-align: center; }
.cta-band h2 { font-family: var(--font-disp); font-size: clamp(2.5rem,6vw,4.5rem); font-weight: 800; color: var(--white); margin-bottom: .75rem; line-height: .96; }
.cta-band p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.6); margin: 0 auto 2.5rem; max-width: 440px; line-height: 1.7; }
.cta-band-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ════════════════ ARTWORK PAGE ════════════════ */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 1.5rem; margin-bottom: 3.5rem; }
.spec-box { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--rl); padding: 1.75rem; transition: box-shadow .2s, border-color .2s; }
.spec-box:hover { border-color: var(--blue); box-shadow: 0 6px 24px rgba(12,181,240,.08); }
.spec-box-icon { width: 44px; height: 44px; background: var(--blue-10); color: var(--blue); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.spec-box h3 { font-size: 15px; font-weight: 600; color: var(--navy-dark); margin-bottom: .5rem; }
.spec-box p { font-size: 13.5px; color: var(--text-50); line-height: 1.7; margin-bottom: .75rem; }
.artwork-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 0; background: var(--border); border: 1.5px solid var(--border); border-radius: var(--rl); overflow: hidden; margin-bottom: 3.5rem; }
.artwork-step { background: var(--white); padding: 1.75rem 1.5rem; }
.artwork-step:hover { background: #f0f7ff; }
.step-num { font-family: var(--font-disp); font-size: 3.5rem; font-weight: 800; line-height: 1; color: var(--blue-10); margin-bottom: .5rem; }
.artwork-step h3 { font-size: 15px; font-weight: 600; color: var(--navy-dark); margin-bottom: .4rem; }
.artwork-step p { font-size: 13px; color: var(--text-50); line-height: 1.65; }

/* ════════════════ LEGAL PAGES ════════════════ */
.legal-wrap { max-width: 860px; padding: clamp(3rem,6vw,5rem) 0 clamp(4rem,8vw,7rem); }
.legal-wrap h2 { font-family: var(--font-disp); font-size: 1.9rem; font-weight: 700; color: var(--navy-dark); margin: 2.5rem 0 .75rem; padding-top: 2.5rem; border-top: 1.5px solid var(--border); letter-spacing: .01em; }
.legal-wrap h2:first-of-type { border-top: none; padding-top: 0; }
.legal-wrap h3 { font-size: 14.5px; font-weight: 600; color: var(--navy-dark); margin: 1.25rem 0 .4rem; }
.legal-wrap p { font-size: 14px; font-weight: 300; color: var(--text-50); line-height: 1.85; margin-bottom: .85rem; }
.legal-wrap p strong { font-weight: 600; color: var(--text); }
.legal-wrap ul, .legal-wrap ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-wrap ul li, .legal-wrap ol li { font-size: 14px; font-weight: 300; color: var(--text-50); line-height: 1.8; margin-bottom: .35rem; }
.legal-wrap ul { list-style: disc; }
.legal-wrap ol { list-style: decimal; }
.legal-wrap a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.warning-box { background: #fff5f5; border: 1.5px solid #fc8181; border-radius: var(--r); padding: 1rem 1.25rem; margin: 1rem 0; }
.warning-box p { color: #742a2a; font-weight: 400; margin: 0; font-size: 13.5px; }
.info-box { background: var(--blue-10); border: 1.5px solid rgba(12,181,240,.3); border-radius: var(--r); padding: 1rem 1.25rem; margin: 1rem 0; }
.info-box p { color: #075985; font-weight: 400; margin: 0; font-size: 13.5px; }
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.25rem 0 2rem; }
.verdict-card { border-radius: var(--r); padding: 1.25rem 1.5rem; }
.verdict-yes { background: #f0faf6; border: 1.5px solid rgba(0,184,122,.3); }
.verdict-no  { background: #fff5f5; border: 1.5px solid #fc8181; }
.verdict-card h3 { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .75rem; }
.verdict-yes h3 { color: #16a34a; }
.verdict-no h3  { color: #c53030; }
.verdict-card ul { margin: 0; padding-left: 1.1rem; list-style: disc; }
.verdict-card li { font-size: 13px; margin-bottom: .3rem; color: var(--text); }
.process-steps { counter-reset: step; display: flex; flex-direction: column; gap: 0; margin: 1.25rem 0; }
.process-step { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.step-circle { width: 32px; height: 32px; background: var(--navy-dark); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.process-step p { margin: 0; font-size: 14px; color: var(--text-50); line-height: 1.7; }
.process-step p strong { color: var(--navy-dark); }
.cookie-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 13px; }
.cookie-table th { background: var(--navy-dark); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 600; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.cookie-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text-50); line-height: 1.65; vertical-align: top; }
.cookie-table tr:nth-child(even) td { background: var(--off); }
.tag-ess { background: var(--blue-10); color: var(--blue); font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 100px; }
.data-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 13px; }
.data-table th { background: var(--navy-dark); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 600; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.data-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text-50); vertical-align: top; line-height: 1.65; }
.data-table tr:nth-child(even) td { background: var(--off); }
.version-bar { display: flex; gap: 2rem; flex-wrap: wrap; background: var(--navy-dark); color: rgba(255,255,255,.6); font-size: 12px; padding: .75rem var(--px); border-radius: var(--r); margin-bottom: 2rem; }
.version-bar span strong { color: var(--white); font-weight: 600; }
.legal-toc { background: var(--off); border: 1.5px solid var(--border); border-radius: var(--rl); padding: 1.5rem 1.75rem; margin-bottom: 2.5rem; }
.legal-toc h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--navy-dark); margin-bottom: .9rem; }
.legal-toc ol { margin: 0; padding-left: 1.2rem; column-count: 2; column-gap: 2rem; }
.legal-toc li { font-size: 13px; color: var(--text-50); margin-bottom: .35rem; }
.legal-toc a { color: var(--blue); text-decoration: none; }
.legal-toc a:hover { text-decoration: underline; }
.size-table-wrap { overflow-x: auto; margin-bottom: 3.5rem; }
.size-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.size-table th { background: var(--navy-dark); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 600; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.size-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: middle; }
.size-table tr:last-child td { border-bottom: none; }
.size-table tr:nth-child(even) td { background: var(--off); }
.tag-green { display: inline-block; background: var(--blue-10); color: var(--blue); font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 100px; white-space: nowrap; }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 3.5rem; }
.faq-item { border-bottom: 1.5px solid var(--border); overflow: hidden; }
.faq-item:first-child { border-top: 1.5px solid var(--border); }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 0; background: none; border: none; cursor: pointer; text-align: left; }
.faq-btn h3 { font-size: 15px; font-weight: 600; color: var(--navy-dark); margin: 0; }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; background: var(--blue-10); color: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .25s, background .2s; font-size: 18px; line-height: 1; font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: var(--white); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0; }
.faq-item.open .faq-body { max-height: 400px; padding-bottom: 1rem; }
.faq-body p { font-size: 14px; font-weight: 300; color: var(--text-50); line-height: 1.75; margin-bottom: .5rem; }
.faq-body a { color: var(--blue); }
.formats-grid { display: flex; flex-wrap: wrap; gap: 7px; margin-top: .75rem; }
.fmt-tag { background: var(--blue-10); color: var(--blue); font-size: 12px; font-weight: 600; padding: 4px 11px; border-radius: 100px; font-family: monospace; letter-spacing: .03em; }
.fmt-tag--grey { background: var(--off); color: var(--mid); }
.colour-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: .75rem; }
.colour-chip { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text); background: var(--off); border-radius: var(--r); padding: 5px 12px; border: 1px solid var(--border); }
.chip-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cta-dark { background: var(--navy-dark); border-radius: var(--rl); padding: clamp(2rem,5vw,3.5rem); display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-dark h2 { font-family: var(--font-disp); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; color: var(--white); line-height: .96; margin-bottom: .6rem; }
.cta-dark p { font-size: 14.5px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 460px; }
.cta-dark-btns { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* ════════════════ SCROLL REVEAL ════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

/* ════════════════ ANIMATIONS ════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .qe-inner { grid-template-columns: 320px 1fr; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid, .local-grid, .svc-detail-grid, .qe-inner { grid-template-columns: 1fr; }
  .svc-detail-grid.rev .svc-det-img { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .main-nav, .header-right .btn-cta { display: none; }
  .burger { display: flex; }
  .site-header { background: var(--navy-dark) !important; }
  .site-header .header-phone { color: rgba(255,255,255,.9); }
  .main-nav.open { display: flex; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--navy-dark); flex-direction: column; justify-content: center; align-items: center; z-index: 199; }
  .main-nav.open ul { flex-direction: column; align-items: center; gap: 0; }
  .main-nav.open a { font-family: var(--font-disp); font-size: 2.2rem; font-weight: 700; color: var(--white); padding: 10px 24px; text-align: center; }
  .main-nav.open a::after { display: none; }
  .verdict-grid { grid-template-columns: 1fr; }
  .legal-toc ol { column-count: 1; }
  .cta-dark { grid-template-columns: 1fr; }
  .cta-dark-btns { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(4rem,18vw,6rem); }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}
:focus-visible { outline: 2.5px solid var(--blue); outline-offset: 3px; }
::selection { background: var(--blue); color: var(--white); }
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--mid); border-radius: 4px; }


/* ===== 2026 UX IMPROVEMENTS ===== */
.about-img-col{overflow:visible}
.about-img-col img{
 width:100%;
 height:auto;
 object-fit:contain;
 border-radius:16px;
}

.page-form{
 background:#fff;
 border-radius:18px;
 padding:40px;
 box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.page-form select,
.page-form input,
.page-form textarea{
 border:2px solid #e5eaf0;
 border-radius:10px;
 transition:.25s ease;
}

.page-form select:focus,
.page-form input:focus,
.page-form textarea:focus{
 outline:none;
 border-color:#0CB5F0;
 box-shadow:0 0 0 4px rgba(12,181,240,.12);
}

.service-card{
 transition:transform .25s ease, box-shadow .25s ease;
}
.service-card:hover{
 transform:translateY(-4px);
 box-shadow:0 15px 40px rgba(0,0,0,.08);
}
