/* Hired Hand — white + royal blue */
:root {
  --bg: #ffffff;
  --bg-alt: #f0f5fb;
  --surface: #ffffff;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #dbe4f0;
  --accent: #1d4ed8;
  --accent-dark: #1e3a8a;
  --accent-soft: #dbeafe;
  --success: #15803d;
  --error: #b91c1c;
  --radius: 12px;
  --shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  --font: "Karla", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --max: 1080px;
  --narrow: 680px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.15em;
}

a:hover { color: var(--accent); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow { width: min(100% - 2rem, var(--narrow)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo:hover { color: var(--accent-dark); }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  font-size: 0.95rem;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover { color: var(--ink); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta:hover { background: var(--accent-dark); color: #fff !important; }

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(29, 78, 216, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.25rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 999px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  max-width: 16ch;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0 0 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-media {
  margin: 0;
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--accent-soft);
  aspect-ratio: 16 / 10;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), transparent 55%);
  pointer-events: none;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--ink-soft);
  color: var(--ink);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
}

.section-lead {
  color: var(--ink-soft);
  margin: -0.25rem 0 1.75rem;
}

.who p, .enquire > .wrap > p, .wont p {
  margin: 0 0 1rem;
}

.muted { color: var(--muted); }

.soft-note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

/* Services rows */
.services { background: var(--surface); border-block: 1px solid var(--line); }

.service-rows {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.service-row:hover,
.service-row:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(29, 78, 216, 0.14);
  transform: translateY(-2px);
  color: inherit;
}

.service-row:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.service-row-alt {
  background: var(--bg-alt);
}

.service-row-media {
  position: relative;
  min-height: 100%;
  background: var(--accent-soft);
  overflow: hidden;
}

.service-row-media picture,
.service-row-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.service-row-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.6rem;
}

.service-row-body h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  color: var(--accent-dark);
}

.service-row-body p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.service-row-cta {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
}

.service-row:hover .service-row-cta,
.service-row:focus-visible .service-row-cta {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pricing-block {
  margin-top: 2rem;
  padding: 1.5rem 1.35rem 1.35rem;
  background: var(--accent-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
}

.pricing-heading {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--accent-dark);
}

.pricing-plan-label {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}

.pricing-sale {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 1.1rem;
  margin: 0 0 0.85rem;
}

.pricing-now {
  font-size: 1.35rem;
  color: var(--ink);
}

.pricing-now strong {
  font-size: 1.6rem;
  color: var(--accent-dark);
}

.pricing-was {
  font-size: 1rem;
  color: var(--muted);
}

.pricing-was s {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.pricing-note {
  margin: 0;
  font-size: 0.95rem;
}

/* Steps */
.steps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.steps li {
  display: flex;
  gap: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.step-num {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.steps h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Won't */
.wont { background: var(--bg-alt); border-block: 1px solid var(--line); }

.wont-list {
  margin: 0;
  padding-left: 1.2rem;
}

.wont-list li { margin-bottom: 0.5rem; }

/* Enquire */
.enquire-form {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-alt {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-status {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
}

.form-status.success {
  background: #e5f2e8;
  color: var(--success);
}

.form-status.error {
  background: #f8e6e6;
  color: var(--error);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  background: var(--ink);
  color: #94a3b8;
  font-size: 0.95rem;
}

.site-footer a { color: #93c5fd; }

.site-footer p { margin: 0 0 0.4rem; }

.site-footer strong { color: #fff; font-weight: 600; }

.footer-copy {
  margin-top: 1rem !important;
  color: #94a3b8;
  font-size: 0.875rem;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-media { max-width: 560px; }
}

@media (max-width: 640px) {
  .nav a:not(.nav-cta) { display: none; }
  .hero { padding: 3rem 0 2.5rem; }
  .section { padding: 2.75rem 0; }
  .hero h1 { max-width: none; }
}


@media (max-width: 720px) {
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row-media picture,
  .service-row-media img {
    min-height: 180px;
    aspect-ratio: 16 / 9;
  }

  .service-row-body {
    padding: 1.25rem 1.2rem 1.4rem;
  }
}

/* Service detail pages */
.service-page {
  padding: 2.5rem 0 3.5rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--line);
}

.service-page .back-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
}

.service-page .back-link:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.service-page h1 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--ink);
}

.service-page .service-body p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

.service-page .service-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
