/*
 * SK Accounting visual refresh
 * Primary brand colour sampled from the supplied logo: #005FAF
 */

:root {
  --sk-blue: #005faf;
  --sk-blue-dark: #004985;
  --sk-blue-deep: #082d4b;
  --sk-blue-ink: #0c263c;
  --sk-blue-soft: #eaf4fc;
  --sk-blue-pale: #f5f9fc;
  --sk-white: #ffffff;
  --sk-ink: #132331;
  --sk-muted: #5b6b78;
  --sk-line: #dbe5ec;
  --sk-shadow: 0 20px 55px rgba(8, 45, 75, 0.1);
  --sk-radius: 18px;
  --sk-header-height: 84px;
  --sk-container: 1180px;
}

html {
  height: auto;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--sk-header-height) + 24px);
}

body {
  min-width: 320px;
  height: auto;
  background: var(--sk-white);
  color: var(--sk-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body p,
.content p,
.blog-text p {
  color: var(--sk-muted);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--sk-blue);
  color: var(--sk-white);
}

:focus-visible {
  outline: 3px solid rgba(0, 95, 175, 0.35);
  outline-offset: 4px;
}

#main {
  position: relative;
  inset: auto;
  z-index: 1;
  float: none;
  width: 100%;
  height: auto;
  min-height: 100vh;
  opacity: 1 !important;
}

#wrapper {
  position: relative;
  inset: auto;
  z-index: 1;
  width: 100%;
  height: auto;
}

.content-holder {
  position: relative;
  inset: auto;
  z-index: 1;
  float: none;
  height: auto;
  padding: var(--sk-header-height) 0 0;
}

.content,
.content2 {
  position: relative;
  z-index: 1;
  float: none;
  display: flow-root;
  width: 100%;
  background: var(--sk-white);
}

.content::before,
.content2::before,
.height-emulator,
.fixed-footer,
.loader {
  display: none !important;
}

.container {
  width: min(calc(100% - 48px), var(--sk-container));
  max-width: var(--sk-container);
  margin-inline: auto;
}

.container[class*="sk-"]::before,
.container[class*="sk-"]::after {
  display: none;
  content: none;
}

.row {
  margin-right: -16px;
  margin-left: -16px;
}

[class*="col-md-"] {
  padding-right: 16px;
  padding-left: 16px;
}

section {
  position: relative;
  float: none;
  width: 100%;
  padding: 96px 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--sk-blue);
  color: var(--sk-white);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */

header.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100% !important;
  height: var(--sk-header-height);
  border-bottom: 1px solid rgba(19, 35, 49, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: none;
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

header.site-header::before {
  display: none;
}

header.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(8, 45, 75, 0.1);
}

.site-header .header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 38px;
  float: none;
  width: min(calc(100% - 48px), 1320px);
  height: 100%;
  margin-inline: auto;
  padding: 0;
}

.site-header .logo-holder {
  position: relative;
  inset: auto;
  z-index: 1;
  flex: 0 0 250px;
  float: none;
  width: 250px;
  margin: 0;
}

.site-header .logo-holder a {
  display: flex;
  align-items: center;
}

.site-header .logo-holder img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header .nav-holder {
  position: relative;
  inset: auto;
  display: block;
  flex: 1 1 auto;
  float: none;
  width: auto;
  height: auto;
  margin-left: auto;
  padding: 0;
  overflow: visible;
  background: transparent;
}

.site-header nav {
  float: none;
  width: auto;
}

.site-header nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.site-header nav li {
  float: none;
  width: auto;
  padding: 0;
}

.site-header nav li a,
.site-header.-flip nav li a {
  position: relative;
  display: block;
  float: none;
  width: auto;
  padding: 10px 0;
  color: var(--sk-ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-header nav li a::before {
  position: absolute;
  bottom: 2px;
  left: 0;
  display: block;
  width: 0;
  height: 2px;
  background: var(--sk-blue);
  content: "";
  transition: width 180ms ease;
}

.site-header nav li a:hover,
.site-header nav li a.is-current {
  color: var(--sk-blue);
}

.site-header nav li a:hover::before,
.site-header nav li a.is-current::before {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--sk-blue);
  border-radius: 999px;
  background: var(--sk-blue);
  color: var(--sk-white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  border-color: var(--sk-blue-dark);
  background: var(--sk-blue-dark);
  color: var(--sk-white);
  transform: translateY(-1px);
}

.site-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--sk-line);
  border-radius: 12px;
  background: var(--sk-white);
  color: var(--sk-ink);
  cursor: pointer;
}

.site-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .site-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .site-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .site-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Shared type and controls */

.sk-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  color: var(--sk-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sk-eyebrow::before {
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.sk-eyebrow--light {
  color: #a8d8ff;
}

.sk-section h2,
.sk-experience h2,
.sk-cta h2 {
  margin: 0;
  color: var(--sk-blue-ink);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.sk-lead {
  color: var(--sk-blue-ink) !important;
  font-size: clamp(20px, 2vw, 25px) !important;
  font-weight: 540;
  line-height: 1.55 !important;
}

.sk-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.sk-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 1px solid var(--sk-blue);
  border-radius: 999px;
  background: var(--sk-blue);
  color: var(--sk-white);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.01em;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.sk-button:hover {
  border-color: var(--sk-blue-dark);
  background: var(--sk-blue-dark);
  color: var(--sk-white);
  box-shadow: 0 12px 28px rgba(0, 95, 175, 0.22);
  transform: translateY(-2px);
}

.sk-button--light {
  border-color: var(--sk-white);
  background: var(--sk-white);
  color: var(--sk-blue-deep);
}

.sk-button--light:hover {
  border-color: #d9eeff;
  background: #d9eeff;
  color: var(--sk-blue-deep);
}

.sk-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 95, 175, 0.35);
  color: var(--sk-blue);
  font-size: 14px;
  font-weight: 750;
  transition: gap 180ms ease, border-color 180ms ease;
}

.sk-text-link:hover {
  gap: 19px;
  border-color: var(--sk-blue);
  color: var(--sk-blue);
}

.sk-text-link--light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--sk-white);
}

.sk-text-link--light:hover {
  border-color: var(--sk-white);
  color: var(--sk-white);
}

/* Homepage hero */

.sk-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--sk-header-height));
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  isolation: isolate;
  background-color: var(--sk-blue-deep);
  background-position: center;
  background-size: cover;
}

.sk-hero__slides {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.sk-hero__slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  background-position: center;
  background-size: cover;
  animation: sk-hero-crossfade 14s ease-in-out infinite;
  transform: scale(1.015);
}

.sk-hero__slide:nth-child(1) {
  animation-delay: 0s;
}

.sk-hero__slide:nth-child(2) {
  animation-delay: -7s;
}

@keyframes sk-hero-crossfade {
  0%,
  44% {
    opacity: 1;
  }

  50%,
  94% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.sk-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 37, 63, 0.98) 0%, rgba(6, 48, 81, 0.9) 47%, rgba(6, 48, 81, 0.38) 74%, rgba(6, 48, 81, 0.22) 100%),
    linear-gradient(0deg, rgba(0, 43, 79, 0.48), transparent 55%);
  content: "";
}

.sk-hero__inner {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

.sk-hero__content {
  width: min(720px, 70%);
  padding: 40px 0;
}

.sk-hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--sk-white);
  font-size: clamp(48px, 6.1vw, 76px);
  font-weight: 620;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-transform: none;
  text-wrap: balance;
}

.sk-hero__lead {
  max-width: 650px;
  margin: 28px 0 34px;
  padding: 0;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: clamp(18px, 1.7vw, 22px) !important;
  line-height: 1.65 !important;
}

.sk-hero__location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 13px !important;
}

.sk-hero__location span {
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid #9ad3ff;
  border-radius: 999px;
}

.sk-trust-bar {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 37, 63, 0.72);
  backdrop-filter: blur(12px);
}

.sk-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sk-trust-item {
  min-height: 110px;
  padding: 26px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.sk-trust-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.sk-trust-item strong,
.sk-trust-item span {
  display: block;
}

.sk-trust-item strong {
  margin-bottom: 5px;
  color: var(--sk-white);
  font-size: 17px;
  font-weight: 720;
  line-height: 1.3;
}

.sk-trust-item span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  line-height: 1.5;
}

/* Homepage sections */

.sk-section {
  padding: 116px 0;
}

.sk-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.sk-section-heading {
  position: sticky;
  top: calc(var(--sk-header-height) + 44px);
}

.sk-intro__copy {
  padding-top: 5px;
}

.sk-intro__copy p {
  margin: 0 0 24px;
  padding: 0;
}

.sk-intro__copy .sk-text-link {
  margin-top: 12px;
}

.sk-services-overview {
  background: var(--sk-blue-pale);
}

.sk-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}

.sk-heading-row > p {
  margin: 0;
  padding: 0 0 4px;
}

.sk-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.sk-service-card {
  position: relative;
  display: flex;
  min-height: 286px;
  flex-direction: column;
  grid-column: span 2;
  padding: 30px;
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-radius);
  background: var(--sk-white);
  box-shadow: 0 1px 0 rgba(8, 45, 75, 0.03);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.sk-service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.sk-service-card:hover {
  border-color: rgba(0, 95, 175, 0.4);
  color: inherit;
  box-shadow: var(--sk-shadow);
  transform: translateY(-5px);
}

.sk-service-card__number {
  margin-bottom: auto;
  color: var(--sk-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.sk-service-card h3 {
  margin: 36px 0 12px;
  color: var(--sk-blue-ink);
  font-size: 23px;
  font-weight: 680;
  line-height: 1.25;
}

.sk-service-card p {
  margin: 0;
  padding: 0 30px 0 0;
  font-size: 14px;
  line-height: 1.65;
}

.sk-service-card__arrow {
  position: absolute;
  right: 26px;
  bottom: 27px;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--sk-blue-soft);
  color: var(--sk-blue);
  transition: background 180ms ease, color 180ms ease;
}

.sk-service-card:hover .sk-service-card__arrow {
  background: var(--sk-blue);
  color: var(--sk-white);
}

.sk-centered-action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.sk-experience {
  padding: 0;
  background: var(--sk-blue-deep);
}

.sk-experience__grid {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1fr 0.92fr;
  gap: 80px;
  align-items: stretch;
}

.sk-experience__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 0;
}

.sk-experience h2 {
  color: var(--sk-white);
}

.sk-experience__content > p:not(.sk-eyebrow):not(.sk-signature) {
  max-width: 650px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.85;
}

.sk-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.sk-credentials span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 650;
}

.sk-signature {
  display: flex;
  flex-direction: column;
  margin: 44px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.sk-signature strong {
  color: var(--sk-white);
  font-size: 18px;
}

.sk-experience__image {
  position: relative;
  min-height: 100%;
  background-position: center;
  background-size: cover;
}

.sk-experience__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 37, 63, 0.52));
  content: "";
}

.sk-experience__badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: flex;
  min-width: 210px;
  flex-direction: column;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  background: rgba(5, 37, 63, 0.8);
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.5;
  backdrop-filter: blur(10px);
}

.sk-experience__badge strong {
  color: var(--sk-white);
  font-size: 17px;
  font-weight: 680;
}

.sk-heading-row--compact {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.sk-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sk-insight-card {
  overflow: hidden;
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-radius);
  background: var(--sk-white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.sk-insight-card:hover {
  box-shadow: var(--sk-shadow);
  transform: translateY(-4px);
}

.sk-insight-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--sk-blue-soft);
}

.sk-insight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.sk-insight-card:hover .sk-insight-card__image img {
  transform: scale(1.035);
}

.sk-insight-card__placeholder {
  position: absolute;
  inset: 0;
  display: block;
  background:
    linear-gradient(135deg, rgba(0, 95, 175, 0.16), transparent),
    radial-gradient(circle at 80% 20%, rgba(0, 95, 175, 0.3), transparent 36%),
    var(--sk-blue-soft);
}

.sk-insight-card__body {
  padding: 26px;
}

.sk-insight-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 17px;
  color: var(--sk-muted);
  font-size: 11px;
  line-height: 1.4;
}

.sk-insight-card__meta span {
  color: var(--sk-blue);
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sk-insight-card h3 {
  margin: 0 0 22px;
  color: var(--sk-blue-ink);
  font-size: 21px;
  font-weight: 680;
  line-height: 1.45;
}

.sk-insight-card h3 a:hover {
  color: var(--sk-blue);
}

.sk-card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--sk-blue);
  font-size: 13px;
  font-weight: 750;
}

.sk-card-link:hover {
  color: var(--sk-blue-dark);
}

.sk-cta {
  padding: 94px 0;
  background:
    radial-gradient(circle at 80% 0, rgba(48, 153, 230, 0.38), transparent 35%),
    var(--sk-blue);
}

.sk-cta__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 90px;
  align-items: center;
}

.sk-cta h2 {
  color: var(--sk-white);
}

.sk-cta__inner > div:last-child p {
  margin: 0 0 26px;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* Existing page content */

.parallax-section {
  display: flex;
  min-height: 440px;
  align-items: center;
  padding: 120px 0;
  background: var(--sk-blue-deep);
}

.parallax-inner {
  inset: 0;
  z-index: 0;
}

.parallax-inner .bg {
  top: 0 !important;
  height: 100% !important;
  background-position: center;
}

.parallax-section .parallax-inner .bg {
  transform: none !important;
}

.parallax-section .overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 37, 63, 0.92), rgba(5, 37, 63, 0.45));
  opacity: 1;
}

.parallax-section .container {
  z-index: 2;
}

.page-title {
  position: relative;
  top: auto;
  z-index: 2;
  float: none;
  width: 100%;
  text-align: left;
}

.page-title h2 {
  position: relative;
  margin: 0;
  padding: 0;
  color: var(--sk-white);
  font-size: clamp(44px, 6vw, 70px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: none;
}

.page-title h2::before {
  display: none;
}

.page-title h2 strong {
  font-weight: 600;
}

.section-title {
  float: none;
  margin: 0 0 28px;
  color: var(--sk-blue-ink);
  font-size: clamp(34px, 4.3vw, 50px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: left;
  text-transform: none;
}

.section-title strong {
  font-weight: 650;
}

.sect-subtitle {
  color: rgba(0, 95, 175, 0.06);
}

.content > section:not(.parallax-section) {
  padding: 100px 0;
}

.services-holder {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 50px 0 70px;
}

.serv-item {
  float: none;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.serv-item-inner {
  min-height: 245px;
  border: 0;
  border-radius: 14px;
  background: var(--sk-blue-deep);
}

.serv-item-inner::before {
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(5, 37, 63, 0.02) 28%,
    rgba(5, 37, 63, 0.38) 62%,
    rgba(5, 37, 63, 0.94) 100%
  );
  opacity: 1;
}

.serv-item img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.ser-title {
  right: 0;
  bottom: 0 !important;
  left: 0;
  z-index: 2;
  display: flex;
  min-height: 84px;
  align-items: flex-end;
  padding: 34px 18px 17px;
  text-align: left;
}

.ser-title h3 {
  display: block;
  width: 100%;
  margin: 0;
  color: var(--sk-white);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
  text-transform: none;
}

.ser-title h3::before {
  display: none;
}

.serv-post {
  display: grid;
  float: none;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.serv-details {
  display: block;
  float: none;
  width: auto;
  scroll-margin-top: calc(var(--sk-header-height) + 30px);
  padding: 32px;
  border: 1px solid var(--sk-line);
  border-radius: 14px;
  background: var(--sk-white);
}

.serv-details h3 {
  float: none;
  margin: 0 0 12px;
  color: var(--sk-blue-ink);
  font-size: 23px;
  font-weight: 680;
  line-height: 1.35;
}

.serv-details p {
  margin: 0;
  padding: 0;
}

.ser-list {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.ser-list li {
  position: relative;
  padding-left: 20px;
  color: var(--sk-muted);
  font-size: 15px;
}

.ser-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--sk-blue);
  content: "";
}

.btn,
.btn2,
.btn3,
.more_btn a {
  display: inline-flex;
  float: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: auto;
  margin: 24px 0 0;
  padding: 0 23px;
  border: 1px solid var(--sk-blue);
  border-radius: 999px;
  background: var(--sk-blue);
  color: var(--sk-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.btn:hover,
.btn2:hover,
.btn3:hover,
.more_btn a:hover {
  border-color: var(--sk-blue-dark) !important;
  background: var(--sk-blue-dark) !important;
  color: var(--sk-white) !important;
}

.btn::before,
.btn2::before,
.btn3::before,
.more_btn a::after {
  display: none;
}

/* Contact and forms */

#findus {
  border-top: 1px solid var(--sk-line);
  background: var(--sk-blue-pale);
}

#findus > .container {
  padding-bottom: 100px;
}

.contact-form-holder {
  float: none;
  width: 100%;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-radius);
  background: var(--sk-white);
  box-shadow: var(--sk-shadow);
}

.wpcf7 form {
  display: grid;
  gap: 18px;
}

.wpcf7 p {
  margin: 0;
  padding: 0;
}

.wpcf7 label {
  display: block;
  color: var(--sk-blue-ink);
  font-size: 14px;
  font-weight: 680;
}

.wpcf7 input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.wpcf7 select,
.wpcf7 textarea,
.contact-form-holder input[type="text"],
.contact-form-holder input[type="email"],
.contact-form-holder input[type="tel"] {
  display: block;
  width: 100%;
  min-height: 52px;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid #cbd9e2;
  border-radius: 9px;
  background: var(--sk-white);
  color: var(--sk-ink);
  font-size: 16px;
  line-height: 1.4;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.wpcf7 textarea {
  min-height: 170px;
  resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--sk-blue) !important;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(0, 95, 175, 0.12);
}

.wpcf7 input[type="submit"] {
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--sk-blue);
  border-radius: 999px;
  background: var(--sk-blue);
  color: var(--sk-white);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--sk-blue-dark);
  transform: translateY(-1px);
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
  color: #a62828;
  font-size: 13px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
}

.map-box {
  overflow: hidden;
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-radius);
  background: var(--sk-white);
  box-shadow: var(--sk-shadow);
}

.map-box iframe {
  display: block;
  width: 100%;
  min-height: 420px;
}

body.page-id-37 section#sec1 > .container > .row {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  align-items: stretch;
}

body.page-id-37 section#sec1 > .container > .row::before,
body.page-id-37 section#sec1 > .container > .row::after {
  display: none;
  content: none;
}

body.page-id-37 section#sec1 > .container > .row > .col-md-12 {
  width: auto;
  grid-column: 1 / -1;
}

body.page-id-37 section#sec1 > .container > .row > .col-md-4,
body.page-id-37 section#sec1 > .container > .row > .col-md-8 {
  float: none;
  width: auto;
}

body.page-id-37 section#sec1 > .container > .row > .col-md-4 {
  display: flex;
}

body.page-id-37 section#sec1 > .container > .row > .col-md-4 img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
}

body.page-id-37 section#sec1 > .container > .row > .col-md-8 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Blog list, article and sidebar */

.content article {
  margin-bottom: 70px;
}

.content article .section-title.dec-title {
  margin-bottom: 14px;
  font-size: clamp(29px, 3.5vw, 42px);
  line-height: 1.28;
}

.creat-list {
  display: flex;
  float: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0 0 24px;
}

.creat-list li {
  float: none;
  margin: 0;
}

.creat-list li a {
  color: var(--sk-muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.creat-list li a:hover {
  color: var(--sk-blue);
}

.blog-media {
  overflow: hidden;
  margin: 0 0 24px;
  border-radius: var(--sk-radius);
}

.blog-media .overlay {
  background: var(--sk-blue-deep);
}

.blog-text {
  float: none;
  width: 100%;
}

.blog-text p {
  margin: 0 0 18px;
}

.single-post {
  padding-top: 42px;
}

.single-post article {
  max-width: 860px;
  margin-inline: auto;
}

.single-post .blog-text {
  color: var(--sk-ink);
  font-size: 17px;
  line-height: 1.85;
}

.single-post .blog-text p,
.single-post .blog-text li {
  font-size: 17px;
  line-height: 1.85;
}

.single-post .blog-text h2,
.single-post .blog-text h3 {
  margin: 50px 0 18px;
  color: var(--sk-blue-ink);
  font-weight: 680;
  line-height: 1.3;
}

.single-post .blog-text h2 {
  font-size: 31px;
}

.single-post .blog-text h3 {
  font-size: 24px;
}

.single-post .blog-text a {
  color: var(--sk-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sidebar {
  padding-left: 34px;
}

.widget {
  margin-bottom: 28px;
  padding: 26px;
  border: 1px solid var(--sk-line);
  border-radius: 14px;
  background: var(--sk-blue-pale);
}

.widget h3 {
  margin: 0 0 18px;
  color: var(--sk-blue-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.widget-posts li {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--sk-line);
}

.widget-posts li:last-child {
  border-bottom: 0;
}

.widget-posts-img {
  overflow: hidden;
  border-radius: 7px;
}

.widget-posts-img img {
  width: 74px;
  height: 56px;
  object-fit: cover;
}

.widget-posts-descr {
  float: none;
  width: auto;
}

.widget-posts-descr a {
  color: var(--sk-blue-ink);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.5;
}

.widget-posts-date {
  display: block;
  margin-top: 4px;
  color: var(--sk-muted);
  font-size: 10px;
}

.widget-categories li {
  border-bottom: 1px solid var(--sk-line);
}

.widget-categories li:last-child {
  border-bottom: 0;
}

.widget-categories a {
  display: block;
  padding: 10px 0;
  color: var(--sk-muted);
  font-size: 13px;
  font-weight: 620;
}

.widget-categories a:hover {
  color: var(--sk-blue);
}

.pagination-blog {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.pagination-blog .page-numbers {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--sk-line);
  border-radius: 9px;
  color: var(--sk-ink);
  font-size: 13px;
}

.pagination-blog .page-numbers.current,
.pagination-blog .page-numbers:hover {
  border-color: var(--sk-blue);
  background: var(--sk-blue);
  color: var(--sk-white);
}

/* Footer */

.site-footer {
  position: relative;
  z-index: 2;
  padding: 84px 0 30px;
  background: #061f34;
  color: var(--sk-white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(320px, 1.5fr) minmax(150px, 0.55fr) minmax(270px, 0.8fr);
  gap: 70px;
  padding-bottom: 62px;
}

.site-footer__brand img {
  display: block;
  width: 270px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer__brand p {
  max-width: 440px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.75;
}

.site-footer__label {
  margin: 0 0 20px;
  padding: 0;
  color: #8bc9f8 !important;
  font-size: 11px !important;
  font-weight: 800;
  line-height: 1.4 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
}

.site-footer__nav nav {
  display: grid;
  gap: 10px;
}

.site-footer__nav a,
.site-footer__contact a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 620;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover {
  color: var(--sk-white);
}

.site-footer address {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-style: normal;
  line-height: 1.75;
}

.site-footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.68);
}

.mobile-contact-bar {
  display: none;
}

/* Responsive */

@media (max-width: 1120px) {
  .site-header .header-inner {
    gap: 24px;
  }

  .site-header .logo-holder {
    flex-basis: 220px;
    width: 220px;
  }

  .site-header nav ul {
    gap: 20px;
  }

  .sk-hero__content {
    width: min(720px, 80%);
  }

  .sk-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sk-service-card,
  .sk-service-card:nth-child(4) {
    grid-column: auto;
  }

  .sk-service-card:last-child {
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .services-holder {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__top {
    gap: 40px;
  }
}

@media (max-width: 960px) {
  :root {
    --sk-header-height: 74px;
  }

  .site-header .header-inner {
    width: min(calc(100% - 32px), 1320px);
  }

  .site-header .logo-holder {
    right: auto;
    flex-basis: 210px;
    width: 210px;
    margin: 0;
  }

  .site-header .nav-holder {
    position: fixed;
    inset: var(--sk-header-height) 0 auto;
    display: none;
    width: 100%;
    height: auto;
    max-height: calc(100svh - var(--sk-header-height));
    padding: 22px 24px 28px;
    overflow-y: auto;
    border-top: 1px solid var(--sk-line);
    background: var(--sk-white);
    box-shadow: 0 18px 36px rgba(8, 45, 75, 0.14);
  }

  .nav-open .site-header .nav-holder {
    display: block;
  }

  .site-header nav ul {
    display: grid;
    gap: 0;
  }

  .site-header nav li {
    width: 100%;
    border-bottom: 1px solid var(--sk-line);
  }

  .site-header nav li a,
  .site-header.-flip nav li a {
    width: 100%;
    padding: 17px 4px;
    color: var(--sk-ink);
    font-size: 16px;
  }

  .site-header nav li a::before {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .site-nav-toggle {
    display: flex;
    flex: 0 0 46px;
    margin-left: auto;
  }

  .sk-hero {
    min-height: auto;
  }

  .sk-hero__inner {
    min-height: 690px;
  }

  .sk-hero__content {
    width: min(720px, 84%);
  }

  .sk-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sk-trust-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .sk-trust-item:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .sk-trust-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .sk-two-column,
  .sk-heading-row,
  .sk-experience__grid,
  .sk-cta__inner {
    grid-template-columns: 1fr;
  }

  .sk-two-column,
  .sk-heading-row {
    gap: 46px;
  }

  .sk-section-heading {
    position: static;
  }

  .sk-heading-row {
    align-items: start;
  }

  .sk-experience__grid {
    width: 100%;
    max-width: none;
    gap: 0;
  }

  .sk-experience__content {
    width: min(calc(100% - 48px), var(--sk-container));
    margin-inline: auto;
    padding: 96px 0;
  }

  .sk-experience__image {
    min-height: 480px;
  }

  .sk-cta__inner {
    gap: 38px;
  }

  .sk-insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sk-insight-card:last-child {
    grid-column: 1 / -1;
  }

  .site-footer__top {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .site-footer__contact {
    grid-column: 1 / -1;
  }

  .sidebar {
    margin-top: 60px;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 32px), var(--sk-container));
  }

  .row {
    margin-right: -10px;
    margin-left: -10px;
  }

  [class*="col-md-"] {
    padding-right: 10px;
    padding-left: 10px;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  body p,
  .content p,
  .blog-text p {
    font-size: 15px;
  }

  .header-cta {
    display: none;
  }

  .site-header .logo-holder {
    flex-basis: 190px;
    width: 190px;
  }

  .sk-hero {
    background-position: 58% center;
  }

  .sk-hero::before {
    background: linear-gradient(90deg, rgba(5, 37, 63, 0.96) 0%, rgba(5, 37, 63, 0.84) 72%, rgba(5, 37, 63, 0.64) 100%);
  }

  .sk-hero__inner {
    min-height: 610px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sk-hero__content {
    width: 100%;
    padding: 28px 0;
  }

  .sk-hero h1 {
    max-width: 560px;
    font-size: clamp(41px, 12vw, 58px);
    line-height: 1.05;
  }

  .sk-hero__lead {
    margin: 23px 0 28px;
    font-size: 17px !important;
  }

  .sk-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .sk-button {
    width: 100%;
  }

  .sk-hero__location {
    align-items: flex-start;
    margin-top: 28px;
  }

  .sk-hero__location span {
    flex: 0 0 8px;
    margin-top: 5px;
  }

  .sk-trust-grid {
    width: 100%;
  }

  .sk-trust-item {
    min-height: 102px;
    padding: 22px 18px;
  }

  .sk-trust-item strong {
    font-size: 15px;
  }

  .sk-trust-item span {
    font-size: 11px;
  }

  .sk-section {
    padding: 84px 0;
  }

  .sk-section h2,
  .sk-experience h2,
  .sk-cta h2 {
    font-size: clamp(35px, 10vw, 46px);
  }

  .sk-lead {
    font-size: 19px !important;
  }

  .sk-heading-row {
    margin-bottom: 38px;
  }

  .sk-service-grid,
  .sk-insights-grid {
    grid-template-columns: 1fr;
  }

  .sk-service-card,
  .sk-service-card:last-child,
  .sk-insight-card:last-child {
    min-height: 240px;
    grid-column: auto;
  }

  .sk-insight-card {
    min-height: 0;
  }

  .sk-experience__content {
    width: min(calc(100% - 32px), var(--sk-container));
    padding: 84px 0;
  }

  .sk-experience__image {
    min-height: 390px;
  }

  .sk-experience__badge {
    right: 16px;
    bottom: 16px;
  }

  .sk-heading-row--compact {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .sk-cta {
    padding: 76px 0;
  }

  .parallax-section {
    min-height: 360px;
    padding: 88px 0;
  }

  .page-title h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .content > section:not(.parallax-section) {
    padding: 76px 0;
  }

  #findus > .container {
    padding-bottom: 76px;
  }

  .section-title {
    font-size: clamp(31px, 9vw, 42px);
  }

  .services-holder {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 38px 0 54px;
  }

  .serv-item-inner {
    min-height: 220px;
  }

  .serv-item img {
    height: 220px;
  }

  .serv-post {
    grid-template-columns: 1fr;
  }

  .serv-details {
    padding: 26px 22px;
  }

  body.page-id-37 section#sec1 > .container > .row {
    display: block;
  }

  body.page-id-37 section#sec1 > .container > .row > .col-md-4 {
    display: block;
    margin-bottom: 28px;
  }

  body.page-id-37 section#sec1 > .container > .row > .col-md-4 img {
    height: auto;
    min-height: 0;
    border-radius: 10px;
    object-fit: contain;
  }

  .map-box iframe {
    min-height: 360px;
  }

  .content article {
    margin-bottom: 54px;
  }

  .single-post {
    padding-top: 20px;
  }

  .single-post .blog-text p,
  .single-post .blog-text li {
    font-size: 16px;
  }

  .site-footer {
    padding: 70px 0 28px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 48px;
  }

  .site-footer__contact {
    grid-column: auto;
  }

  .site-footer__brand img {
    width: 240px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 1100;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: var(--sk-blue);
    box-shadow: 0 12px 34px rgba(5, 37, 63, 0.3);
    color: var(--sk-white);
    font-size: 14px;
    font-weight: 750;
  }

  body.page-id-37 {
    padding-bottom: 0;
  }

  body.page-id-37 .mobile-contact-bar {
    display: none;
  }
}

@media (max-width: 420px) {
  .site-header .logo-holder {
    flex-basis: 172px;
    width: 172px;
  }

  .site-nav-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .sk-hero__slide {
    opacity: 0;
    animation: none !important;
    transform: none;
  }

  .sk-hero__slide:first-child {
    opacity: 1;
  }
}

/* =========================================
   Image visibility refinements — 2026-08-04
   Keeps photographs clear on desktop and mobile
   ========================================= */

/* Homepage / landing-page first view */
.sk-hero {
  background-position: center center;
}

.sk-hero__slide {
  background-position: center center;
  filter: brightness(1.12) saturate(1.03);
}

.sk-hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(5, 37, 63, 0.72) 0%,
      rgba(6, 48, 81, 0.54) 43%,
      rgba(6, 48, 81, 0.20) 74%,
      rgba(6, 48, 81, 0.08) 100%
    ),
    linear-gradient(0deg, rgba(0, 43, 79, 0.16), transparent 58%);
}

.sk-hero h1,
.sk-hero__lead,
.sk-hero__location {
  text-shadow: 0 2px 18px rgba(5, 37, 63, 0.34);
}

/* Main photographs at the top of inner pages */
.parallax-inner .bg {
  width: 100% !important;
  height: 100% !important;
  background-position: center center !important;
  background-size: cover !important;
  filter: brightness(1.10) saturate(1.02);
}

.parallax-section .overlay {
  background: linear-gradient(
    90deg,
    rgba(5, 37, 63, 0.66) 0%,
    rgba(5, 37, 63, 0.38) 52%,
    rgba(5, 37, 63, 0.14) 100%
  );
  opacity: 1;
}

/* Contact-page photograph: keep the subject within view */
body.page-id-37 .parallax-inner .bg {
  background-position: 58% center !important;
}

/* Photograph cards on service, insight and article pages */
.serv-item-inner::before {
  background: linear-gradient(
    180deg,
    rgba(5, 37, 63, 0.01) 30%,
    rgba(5, 37, 63, 0.18) 64%,
    rgba(5, 37, 63, 0.70) 100%
  );
}

.serv-item img {
  height: 270px;
  object-position: center center;
  filter: brightness(1.07) saturate(1.02);
}

.sk-insight-card__image img,
.blog-media img {
  filter: brightness(1.06) saturate(1.02);
}

@media (max-width: 767px) {
  /* The wide team photograph needs a deliberate crop on narrow screens. */
  .sk-hero,
  .sk-hero__slide {
    background-position: 43% center;
  }

  .sk-hero__slide {
    filter: brightness(1.15) saturate(1.03);
    transform: scale(1.01);
  }

  .sk-hero::before {
    background:
      linear-gradient(
        90deg,
        rgba(5, 37, 63, 0.64) 0%,
        rgba(5, 37, 63, 0.42) 64%,
        rgba(5, 37, 63, 0.16) 100%
      ),
      linear-gradient(0deg, rgba(0, 43, 79, 0.16), transparent 58%);
  }

  .parallax-section {
    min-height: 400px;
    padding: 96px 0;
  }

  .parallax-inner .bg {
    background-position: center center !important;
    filter: brightness(1.13) saturate(1.02);
  }

  .parallax-section .overlay {
    background: linear-gradient(
      90deg,
      rgba(5, 37, 63, 0.58) 0%,
      rgba(5, 37, 63, 0.34) 66%,
      rgba(5, 37, 63, 0.16) 100%
    );
  }

  body.page-id-37 .parallax-inner .bg {
    background-position: 60% center !important;
  }

  .serv-item img {
    height: 250px;
  }
}

/* =========================================
   Header alignment + inner-page FV height — 2026-08-04
   ========================================= */

/*
 * WordPress adds a top margin while the admin bar is visible. Offset the
 * fixed site header by the same amount so the content starts immediately
 * below the header instead of leaving an extra white strip.
 */
body.admin-bar header.site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar header.site-header {
    top: 46px;
  }
}

/*
 * Give the first-view image on inner pages enough vertical space to reveal
 * substantially more of the original photograph while retaining full bleed.
 */
.content > .parallax-section:first-child {
  min-height: clamp(600px, 70svh, 760px);
  padding: clamp(150px, 17vh, 210px) 0;
}

.content > .parallax-section:first-child .parallax-inner,
.content > .parallax-section:first-child .parallax-inner .bg {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.content > .parallax-section:first-child .parallax-inner .bg {
  background-position: center center !important;
  background-size: cover !important;
}

/* Preserve the more useful focal point of the contact photograph. */
body.page-id-37 .content > .parallax-section:first-child .parallax-inner .bg {
  background-position: 58% center !important;
}

@media (max-width: 960px) {
  .content > .parallax-section:first-child {
    min-height: 600px;
    padding: 140px 0;
  }
}

@media (max-width: 767px) {
  .content > .parallax-section:first-child {
    min-height: 500px;
    padding: 116px 0;
  }

  .content > .parallax-section:first-child .parallax-inner .bg {
    background-position: center center !important;
  }

  body.page-id-37 .content > .parallax-section:first-child .parallax-inner .bg {
    background-position: 60% center !important;
  }
}

@media (max-width: 420px) {
  .content > .parallax-section:first-child {
    min-height: 470px;
    padding: 104px 0;
  }
}
