@font-face {
  font-family: "Paras Option One";
  src: url("/paras-preview-assets/fonts/Unbounded-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

:root {
  --blue: #2f4696;
  --blue-deep: #183475;
  --ink: #123653;
  --paper: #f7f9fc;
  --white: #ffffff;
  --line: rgb(18 54 83 / .24);
  --header: 64px;
  --edge: clamp(24px, 5.25vw, 84px);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--blue-deep); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--blue-deep);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.service-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header);
  background: rgb(255 255 255 / .97);
  border-bottom: 1px solid rgb(18 54 83 / .16);
}
.service-header-row {
  height: 100%;
  padding: 0 var(--edge);
  display: flex;
  align-items: center;
  gap: 32px;
}
.service-brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  height: 60px;
  margin-right: auto;
}
.service-brand img { width: 27px; height: 32px; object-fit: contain; }
.service-brand span { display: flex; flex-direction: column; line-height: 1; }
.service-brand strong { color: var(--blue); font: 600 22px/1 "Paras Option One", sans-serif; letter-spacing: -.02em; }
.service-brand small { display: none; }
.service-main-nav { display: flex; align-items: center; gap: 30px; }
.service-main-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
}
.service-main-nav a::after {
  content: "";
  width: 0;
  height: 1px;
  margin-left: 0;
  background: currentColor;
  transition: width .35s var(--ease), margin-left .35s var(--ease);
}
.service-main-nav a:hover::after,
.service-main-nav a:focus-visible::after { width: 18px; margin-left: 8px; }
.service-talk {
  min-height: 42px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  transition: color .3s ease, background .3s ease;
}
.service-talk:hover,
.service-talk:focus-visible { color: #fff; background: var(--ink); }
.service-menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
  display: none;
  border: 0;
  background: transparent;
}
.service-menu-toggle span,
.service-menu-toggle::before,
.service-menu-toggle::after {
  content: "";
  width: 27px;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .2s ease;
}
.service-menu-toggle::before { transform: translate(-50%, -7px); }
.service-menu-toggle span { transform: translate(-50%, -50%); }
.service-menu-toggle::after { transform: translate(-50%, 7px); }
.service-menu-toggle[aria-expanded="true"] span { opacity: 0; }
.service-menu-toggle[aria-expanded="true"]::before { transform: translate(-50%, -50%) rotate(45deg); }
.service-menu-toggle[aria-expanded="true"]::after { transform: translate(-50%, -50%) rotate(-45deg); }
.service-mobile-menu { display: none; }

.service-hero {
  min-height: calc(100svh - 68px);
  padding: calc(var(--header) + 34px) var(--edge) 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #3654ad 0%, var(--blue) 56%, #263d8a 100%);
}
.service-hero > *:not(.service-hero-art) { position: relative; z-index: 2; }
.service-hero-art { position: absolute; inset: 0; pointer-events: none; }
.service-hero-art span { position: absolute; display: block; border: 1px solid rgb(255 255 255 / .55); }
.service-hero-art span:nth-child(1) {
  width: clamp(300px, 34vw, 540px); height: clamp(300px, 34vw, 540px);
  top: 2%; right: 14%; border-radius: 50%; background: rgb(255 255 255 / .09);
}
.service-hero-art span:nth-child(2) {
  width: clamp(260px, 30vw, 470px); height: clamp(260px, 30vw, 470px);
  right: -6%; bottom: -14%; border-radius: 50% 50% 0 50%; background: rgb(255 255 255 / .94);
  transform: rotate(18deg);
}
.service-hero-art span:nth-child(3) {
  width: clamp(90px, 10vw, 150px); height: clamp(280px, 31vw, 470px);
  right: 6%; top: 9%; border-radius: 999px 999px 0 0; background: rgb(255 255 255 / .14);
  transform: rotate(-34deg);
}
.service-hero-art span:nth-child(4) {
  width: clamp(150px, 18vw, 280px); height: clamp(150px, 18vw, 280px);
  right: 31%; bottom: -8%; border-radius: 50%; background: rgb(255 255 255 / .08);
}
.service-hero-top,
.service-hero-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-hero-top span:last-child { opacity: .7; }
.service-hero-grid {
  margin: auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .45fr);
  align-items: end;
  gap: clamp(56px, 10vw, 170px);
}
.service-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(88px, 12vw, 184px);
  font-weight: 300;
  line-height: .76;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.service-hero-copy { max-width: 430px; padding: 0 0 4px; }
.service-hero-copy p { margin: 0; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.48; }
.service-hero-copy a {
  min-height: 50px;
  margin-top: 30px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(255 255 255 / .8);
  border-radius: 999px;
  font-size: 14px;
}
.service-hero-foot span:last-child { font-weight: 400; opacity: .7; }
.service-hero-current { display: inline-flex; align-items: center; gap: 12px; }
.service-hero-current i { width: 34px; height: 1px; display: inline-block; background: currentColor; }

.service-switcher {
  position: sticky;
  top: var(--header);
  z-index: 15;
  height: 68px;
  display: flex;
  overflow-x: auto;
  color: var(--ink);
  background: rgb(255 255 255 / .98);
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}
.service-switcher::-webkit-scrollbar { display: none; }
.service-switcher a {
  min-width: max-content;
  flex: 1 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-right: 1px solid var(--line);
  font-size: 11px;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease;
}
.service-switcher a span { opacity: .52; }
.service-switcher a[aria-current="page"],
.service-switcher a:hover,
.service-switcher a:focus-visible { color: #fff; background: var(--blue); }

.service-cover {
  height: min(63vw, 760px);
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: #e8eef5;
}
.service-cover img { width: 100%; height: 100%; display: block; object-fit: cover; }

.service-opening {
  padding: clamp(94px, 11vw, 164px) var(--edge);
  scroll-margin-top: calc(var(--header) + 68px);
  display: grid;
  grid-template-columns: minmax(190px, .32fr) minmax(0, 1.3fr);
  gap: clamp(56px, 10vw, 170px);
  background: #fff;
}
.service-label {
  margin: 8px 0 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-opening h2,
.service-detail-heading h2,
.service-close h2 {
  margin: 0;
  font-size: clamp(49px, 6vw, 88px);
  font-weight: 300;
  line-height: .94;
  letter-spacing: -.04em;
}
.service-opening-copy { max-width: 870px; }
.service-opening-copy > p {
  max-width: 730px;
  margin: 30px 0 0;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}
.service-outcomes {
  margin-top: 64px;
  border-top: 1px solid var(--line);
}
.service-outcomes div {
  min-height: 94px;
  display: grid;
  grid-template-columns: 42px minmax(180px, .55fr) minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid var(--line);
}
.service-outcomes span { color: var(--blue); font-size: 12px; }
.service-outcomes strong { font-size: 18px; font-weight: 500; }
.service-outcomes p { margin: 0; font-size: 15px; line-height: 1.45; }

.service-process {
  padding: clamp(94px, 10vw, 150px) var(--edge);
  color: #fff;
  background: var(--blue-deep);
}
.service-process-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
  align-items: end;
  gap: 70px;
}
.service-process h2 { margin: 0; font-size: clamp(46px, 5.6vw, 82px); font-weight: 300; line-height: .94; letter-spacing: -.04em; }
.service-process-heading p { margin: 0; font-size: 17px; line-height: 1.5; opacity: .78; }
.service-process-rail {
  margin-top: clamp(62px, 8vw, 112px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgb(255 255 255 / .48);
  border-bottom: 1px solid rgb(255 255 255 / .48);
}
.service-process-rail article {
  min-height: 250px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgb(255 255 255 / .48);
}
.service-process-rail article:last-child { border-right: 0; }
.service-process-rail span { font-size: 12px; opacity: .6; }
.service-process-rail strong { margin-top: auto; font-size: clamp(24px, 2.25vw, 34px); font-weight: 400; line-height: 1; }
.service-process-rail p { margin: 17px 0 0; font-size: 14px; line-height: 1.45; opacity: .72; }

.service-detail {
  padding: clamp(100px, 11vw, 164px) var(--edge);
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr);
  gap: clamp(70px, 11vw, 180px);
  color: var(--ink);
  background: var(--paper);
}
.service-detail-heading { position: sticky; top: calc(var(--header) + 104px); align-self: start; }
.service-detail-heading p { max-width: 390px; margin: 28px 0 0; font-size: 17px; line-height: 1.5; }
.service-detail-blocks { border-top: 1px solid var(--line); }
.service-detail-blocks article { padding: 42px 0 46px; border-bottom: 1px solid var(--line); }
.service-detail-blocks h3 { margin: 0; font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1; letter-spacing: -.035em; }
.service-detail-blocks p { max-width: 720px; margin: 22px 0 0; font-size: 16px; line-height: 1.55; }
.service-detail-blocks ul { margin: 26px 0 0; padding: 0; list-style: none; }
.service-detail-blocks li {
  min-height: 52px;
  padding: 13px 0 13px 28px;
  position: relative;
  border-top: 1px solid rgb(18 54 83 / .12);
  font-size: 15px;
  line-height: 1.42;
}
.service-detail-blocks li::before { content: "↘"; position: absolute; left: 0; color: var(--blue); }

.service-inputs {
  padding: clamp(90px, 10vw, 145px) var(--edge);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 160px);
  background: #fff;
}
.service-inputs h2 { margin: 0 0 42px; font-size: clamp(38px, 4.1vw, 62px); font-weight: 300; line-height: .98; letter-spacing: -.04em; }
.service-inputs ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.service-inputs li { min-height: 70px; padding: 20px 0; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: 16px; line-height: 1.4; }

.service-note {
  padding: 36px var(--edge);
  display: grid;
  grid-template-columns: minmax(150px, .25fr) minmax(0, 1fr);
  gap: 50px;
  color: #fff;
  background: var(--blue);
}
.service-note strong { font-size: 13px; letter-spacing: .07em; text-transform: uppercase; }
.service-note p { max-width: 900px; margin: 0; font-size: 16px; line-height: 1.5; }

.service-close {
  padding: clamp(100px, 11vw, 164px) var(--edge);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  gap: clamp(70px, 11vw, 170px);
  color: #fff;
  background: var(--blue-deep);
}
.service-close p { max-width: 480px; margin: 0 0 34px; font-size: 17px; line-height: 1.5; }
.service-close a {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  color: var(--blue-deep);
  background: #fff;
  border-radius: 999px;
  font-size: 14px;
}
.service-next {
  padding: 0 var(--edge);
  color: var(--ink);
  background: #fff;
}
.service-next a {
  min-height: 140px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid var(--line);
}
.service-next span { font-size: 12px; color: var(--blue); }
.service-next strong { font-size: clamp(28px, 3vw, 44px); font-weight: 400; letter-spacing: -.035em; }
.service-next i { font-size: 30px; font-style: normal; }

.service-footer { padding: 72px var(--edge) 28px; color: #fff; background: #102c57; }
.service-footer-main { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 70px; }
.service-footer-brand img { width: 58px; height: 70px; object-fit: contain; }
.service-footer-brand h2 { margin: 26px 0 16px; font-size: clamp(32px, 3.2vw, 48px); font-weight: 300; letter-spacing: -.04em; }
.service-footer-brand p { margin: 0; font-size: 13px; line-height: 1.5; opacity: .65; }
.service-footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.service-footer nav h3 { margin: 0 0 18px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; opacity: .55; }
.service-footer nav a { font-size: 14px; }
.service-footer-bottom { margin-top: 64px; padding-top: 20px; display: flex; gap: 28px; border-top: 1px solid rgb(255 255 255 / .25); font-size: 11px; opacity: .62; }
.service-footer-bottom a { margin-left: auto; }

.service-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 14;
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--blue);
  border: 1px solid rgb(255 255 255 / .55);
  border-radius: 999px;
  font-size: 13px;
}

.js .service-reveal { opacity: 0; transform: translateY(36px); }
.js .service-reveal.in-view { opacity: 1; transform: none; transition: opacity .7s ease, transform .9s var(--ease); }

a:focus-visible,
button:focus-visible { outline: 2px solid #78c8f6; outline-offset: 4px; }

@media (max-width: 900px) {
  .service-main-nav, .service-talk { display: none; }
  .service-menu-toggle { display: grid; }
  .service-mobile-menu {
    position: fixed;
    inset: var(--header) 0 0;
    z-index: 29;
    padding: 34px var(--edge) 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    color: var(--ink);
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, visibility .25s ease, transform .35s var(--ease);
  }
  .menu-open .service-mobile-menu { opacity: 1; visibility: visible; transform: none; }
  .service-mobile-menu a { min-height: 56px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: 28px; font-weight: 300; }
  .service-mobile-menu a:last-child { margin-top: 30px; min-height: 48px; padding: 0 20px; align-self: flex-start; color: #fff; background: var(--blue); border: 0; border-radius: 999px; font-size: 14px; }
  .service-hero-grid { grid-template-columns: 1fr; align-items: start; gap: 46px; }
  .service-hero-copy { max-width: 600px; }
  .service-hero-art span:nth-child(1) { right: -16%; top: 12%; }
  .service-hero-art span:nth-child(2) { right: -22%; bottom: -7%; }
  .service-opening { grid-template-columns: 1fr; gap: 38px; }
  .service-process-heading { grid-template-columns: 1fr; gap: 34px; }
  .service-process-rail { grid-template-columns: 1fr 1fr; }
  .service-process-rail article:nth-child(2) { border-right: 0; }
  .service-process-rail article:nth-child(-n+2) { border-bottom: 1px solid rgb(255 255 255 / .48); }
  .service-detail { grid-template-columns: 1fr; gap: 60px; }
  .service-detail-heading { position: relative; top: auto; }
  .service-close { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --header: 64px; --edge: 20px; }
  .service-brand img { width: 25px; height: 29px; }
  .service-brand strong { font-size: 20px; }
  .service-hero { min-height: calc(100svh - 58px); padding-top: calc(var(--header) + 28px); padding-bottom: 30px; }
  .service-hero-grid { margin: auto 0; gap: 38px; }
  .service-hero h1 { font-size: clamp(58px, 19vw, 82px); line-height: .82; }
  .service-hero-copy p { font-size: 16px; }
  .service-hero-foot span:last-child { display: none; }
  .service-hero-art span:nth-child(1) { width: 260px; height: 260px; right: -33%; top: 20%; }
  .service-hero-art span:nth-child(2) { width: 260px; height: 260px; right: -35%; bottom: -10%; }
  .service-hero-art span:nth-child(3) { display: none; }
  .service-switcher { height: 58px; scroll-snap-type: x mandatory; }
  .service-switcher a { min-width: 145px; padding: 0 14px; scroll-snap-align: start; }
  .service-cover { height: 82vw; min-height: 310px; }
  .service-opening { padding: 76px var(--edge); }
  .service-opening h2, .service-detail-heading h2, .service-close h2 { font-size: 46px; }
  .service-opening-copy > p { font-size: 16px; }
  .service-outcomes { margin-top: 46px; }
  .service-outcomes div { min-height: 112px; padding: 20px 0; grid-template-columns: 34px 1fr; gap: 8px 14px; }
  .service-outcomes p { grid-column: 2; }
  .service-process { padding: 76px var(--edge); }
  .service-process h2 { font-size: 45px; }
  .service-process-heading p { font-size: 16px; }
  .service-process-rail { grid-template-columns: 1fr; }
  .service-process-rail article { min-height: 190px; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / .48); }
  .service-process-rail article:nth-child(3) { border-bottom: 1px solid rgb(255 255 255 / .48); }
  .service-detail { padding: 78px var(--edge); gap: 48px; }
  .service-detail-heading p { font-size: 16px; }
  .service-detail-blocks article { padding: 34px 0 38px; }
  .service-detail-blocks h3 { font-size: 30px; }
  .service-inputs { padding: 76px var(--edge); grid-template-columns: 1fr; gap: 64px; }
  .service-inputs h2 { font-size: 42px; margin-bottom: 30px; }
  .service-note { padding: 32px var(--edge); grid-template-columns: 1fr; gap: 18px; }
  .service-close { padding: 78px var(--edge); gap: 44px; }
  .service-next a { min-height: 112px; grid-template-columns: 52px 1fr auto; gap: 16px; }
  .service-next strong { font-size: 27px; }
  .service-footer { padding: 60px var(--edge) 24px; }
  .service-footer-main { grid-template-columns: 1fr 1fr; gap: 46px 24px; }
  .service-footer-brand { grid-column: 1 / span 2; padding-bottom: 36px; border-bottom: 1px solid rgb(255 255 255 / .24); }
  .service-footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .service-footer-bottom a { margin-left: 0; }
  .service-wa { display: none; }
  .js .service-reveal { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .js .service-reveal { opacity: 1; transform: none; }
}

/* Palladio-inspired service system */
main {
  display: flex;
  flex-direction: column;
}

.service-hero { order: 1; }
.service-switcher { order: 2; }
.service-opening { order: 3; }
.service-detail { order: 4; }
.service-cover { order: 5; }
.service-close { order: 6; }
.service-next { display: none; order: 7; }
.service-process,
.service-inputs,
.service-note { display: none; }

.service-header {
  height: 54px;
  background: rgb(255 255 255 / .96);
  backdrop-filter: blur(16px);
}

.service-header-row { padding-inline: max(28px, 5.2vw); }
.service-brand img { width: 27px; height: 32px; }
.service-brand strong { font-size: 22px; }

.service-hero {
  min-height: calc(100svh - 94px);
  padding: 130px max(28px, 5.2vw) 58px;
  justify-content: flex-start;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 10%, rgb(255 255 255 / .12), transparent 30%),
    linear-gradient(120deg, #4f8fc9 0%, #337bb2 42%, #245c8a 72%, #173f67 100%);
}

.service-hero-top,
.service-hero-foot { display: none; }

.service-hero-grid {
  width: 100%;
  margin: 0;
  display: block;
}

.service-hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(88px, 9vw, 138px);
  font-weight: 600;
  line-height: .8;
  letter-spacing: -.06em;
}

.service-hero-copy {
  max-width: 330px;
  margin-top: 28px;
  padding: 0;
}

.service-hero-copy p {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.52;
}

.service-hero-copy a { display: none; }

.service-hero-art {
  left: 48%;
  overflow: hidden;
  opacity: .88;
}

.service-hero-art::before,
.service-hero-art span {
  border: 0;
  background: rgb(244 246 248 / .9);
  box-shadow: none;
}

.service-hero-art::before {
  content: "";
  position: absolute;
  display: block;
}

.service-hero-art::before {
  width: clamp(108px, 9vw, 142px);
  height: clamp(220px, 20vw, 310px);
  left: 11%;
  top: 12%;
  -webkit-mask: radial-gradient(circle at 100% 50%, transparent 0 31%, #000 32%);
  mask: radial-gradient(circle at 100% 50%, transparent 0 31%, #000 32%);
}

.service-hero-art::after {
  display: none;
}

.service-hero-art span { display: none; }

.service-switcher {
  top: 0;
  height: 94px;
  color: #fff;
  background: rgb(24 73 108 / .97);
  border-top: 1px solid rgb(255 255 255 / .55);
  border-bottom: 1px solid rgb(255 255 255 / .55);
  backdrop-filter: blur(14px);
}

.service-switcher a {
  min-width: 0;
  flex: 1 1 14.285%;
  padding: 0 14px;
  border-right-color: rgb(255 255 255 / .5);
  font-size: clamp(9px, .83vw, 12px);
  font-weight: 600;
  letter-spacing: .025em;
  line-height: 1.2;
  text-align: center;
}

.service-switcher a span { display: none; }
.service-switcher a[aria-current="page"] {
  color: #fff;
  background: rgb(255 255 255 / .1);
  box-shadow: inset 0 -4px 0 #fff;
}

.service-label br { display: none; }

.service-opening,
.service-detail {
  color: #fff;
  background:
    linear-gradient(90deg, #4d8bc6 0%, #367fb4 47%, #23547e 100%);
}

.service-opening {
  padding: 124px max(28px, 5.2vw) 54px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 100px;
}

.service-opening > .service-label {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4vw, 61px);
  font-weight: 300;
  line-height: .97;
  letter-spacing: -.045em;
  text-transform: none;
}

.service-opening-copy h2 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.02em;
}

.service-opening-copy > p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / .84);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.62;
}

.service-outcomes { display: none; }

.service-detail {
  min-height: 560px;
  padding: 106px max(28px, 5.2vw) clamp(104px, 11vw, 164px);
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 38px;
  overflow: hidden;
}

.service-detail::before {
  content: "";
  width: clamp(82px, 8vw, 112px);
  aspect-ratio: 1;
  grid-column: 1;
  align-self: center;
  justify-self: center;
  background: rgb(255 255 255 / .13);
  clip-path: polygon(36% 0,64% 0,64% 36%,100% 36%,100% 64%,64% 64%,64% 100%,36% 100%,36% 64%,0 64%,0 36%,36% 36%);
  transform: rotate(45deg);
}

.service-detail-heading { display: none; }

.service-detail-blocks {
  grid-column: 2;
  align-self: start;
  border-top: 1px solid rgb(255 255 255 / .68);
}

.service-detail-blocks article {
  min-height: 74px;
  padding: 0 58px 0 72px;
  position: relative;
  overflow: hidden;
  color: #fff;
  border-bottom: 1px solid rgb(255 255 255 / .68);
  cursor: pointer;
  outline: none;
  transition: background .35s var(--ease), padding-bottom .45s var(--ease);
}

.service-detail-blocks article::before,
.service-detail-blocks article::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 37px;
  width: 24px;
  height: 1px;
  background: #fff;
  transform-origin: center;
  transition: transform .45s var(--ease);
}

.service-detail-blocks article::after { transform: rotate(90deg); }
.service-detail-blocks article:hover,
.service-detail-blocks article:focus-visible,
.service-detail-blocks article.is-open { background: rgb(255 255 255 / .07); }
.service-detail-blocks article.is-open { padding-bottom: 34px; }
.service-detail-blocks article.is-open::after { transform: rotate(0); }

.service-detail-blocks h3 {
  min-height: 73px;
  margin: 0;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: clamp(27px, 2.45vw, 39px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.service-detail-blocks article > p,
.service-detail-blocks article > ul {
  max-width: 680px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgb(255 255 255 / .82);
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height .55s var(--ease), margin .35s ease, opacity .3s ease, transform .45s var(--ease);
}

.service-detail-blocks article.is-open > p {
  max-height: 180px;
  opacity: 1;
  transform: none;
}

.service-detail-blocks article.is-open > ul {
  max-height: 240px;
  margin-top: 18px;
  opacity: 1;
  transform: none;
}

.service-detail-blocks li { color: rgb(255 255 255 / .76); }

.service-cover {
  width: 100%;
  height: clamp(420px, 47vw, 680px);
  min-height: 0;
  margin: 0;
  background: #e8edf2;
}

.service-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.service-close {
  padding: clamp(92px, 10vw, 150px) max(28px, 5.2vw);
  display: grid;
  grid-template-columns: minmax(250px, .42fr) minmax(0, 1fr);
  gap: clamp(70px, 9vw, 150px);
  color: var(--ink);
  background: #fff;
}

.service-close h2 {
  max-width: 450px;
  margin: 0;
  font-size: clamp(48px, 5.3vw, 80px);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.055em;
}

.service-close > div { max-width: 610px; }
.service-close > div p {
  margin: 0;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}

.service-close a {
  min-height: 54px;
  margin-top: 34px;
  padding: 0 23px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 0;
  transition: color .3s ease, background .3s ease;
}

.service-close a:hover,
.service-close a:focus-visible { color: var(--blue); background: transparent; }

.service-close > div > a { display: none; }

.service-enquiry-form {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 30px;
}

.service-enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.service-enquiry-form label:last-of-type,
.service-enquiry-consent { grid-column: 1 / -1; }

.service-enquiry-form input,
.service-enquiry-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f3f6f8;
  border: 0;
  border-bottom: 1px solid #7996a7;
  border-radius: 0;
  font: inherit;
  font-size: 16px;
  outline: 0;
  transition: border-color .25s ease, background .25s ease;
}

.service-enquiry-form textarea { min-height: 112px; resize: vertical; }
.service-enquiry-form input:focus,
.service-enquiry-form textarea:focus { background: #edf3f7; border-color: var(--blue); }

.service-enquiry-consent {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgb(18 54 83 / .74);
  font-size: 13px;
  line-height: 1.4;
}

.service-enquiry-consent input { width: 18px; min-height: 18px; margin: 0; }

.service-enquiry-form button {
  width: max-content;
  min-height: 52px;
  padding: 0 28px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 999px;
  cursor: pointer;
  transition: color .3s ease, background .3s ease;
}

.service-enquiry-form button:hover,
.service-enquiry-form button:focus-visible { color: var(--blue); background: #fff; }

.service-wa { display: none; }

.service-next {
  padding: 0 max(28px, 5.2vw);
  color: #fff;
  background: #173f67;
  border-top: 1px solid rgb(255 255 255 / .35);
}

.service-next a {
  min-height: 124px;
  border-top: 0;
}

.service-footer { background: #173f67; }

@media (max-width: 980px) {
  .service-main-nav,
  .service-talk { display: none; }
  .service-menu-toggle { display: block; }
  .service-mobile-menu { display: flex; }
  .service-switcher { height: 72px; }
  .service-switcher a { min-width: 162px; flex: 0 0 162px; }
  .service-opening,
  .service-detail,
  .service-close { gap: 52px; }
}

@media (max-width: 700px) {
  :root { --header: 58px; --edge: 20px; }
  .service-header { height: 58px; }
  .service-header-row { padding-inline: 20px; }
  .service-hero {
    min-height: 520px;
    padding: 112px 20px 48px;
  }
  .service-hero h1 { font-size: clamp(64px, 20vw, 88px); }
  .service-hero-copy { max-width: 250px; margin-top: 36px; }
  .service-hero-copy p { font-size: 15px; }
  .service-hero-art { left: 42%; opacity: .58; }
  .service-hero-art::before { left: -6%; top: 36%; }
  .service-hero-art::after { right: -42%; bottom: 8%; }
  .service-hero-art span:nth-child(1) { left: 42%; top: 13%; }
  .service-hero-art span:nth-child(2) { left: 38%; top: 54%; }
  .service-hero-art span:nth-child(3) { left: 80%; top: 28%; display: block; }
  .service-hero-art span:nth-child(4) { left: 2%; bottom: -3%; }
  .service-switcher {
    top: 58px;
    height: 66px;
    scroll-snap-type: x mandatory;
  }
  .service-switcher a {
    min-width: 154px;
    flex-basis: 154px;
    padding-inline: 14px;
    scroll-snap-align: start;
    font-size: 10px;
  }
  .service-opening {
    padding: 82px 20px 44px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .service-opening > .service-label { font-size: 43px; }
  .service-opening-copy h2 { font-size: 19px; }
  .service-opening-copy > p { margin-top: 18px; font-size: 15px; }
  .service-detail {
    min-height: 0;
    padding: 22px 20px 88px;
    display: block;
  }
  .service-detail::before { display: none; }
  .service-detail-blocks { width: 100%; }
  .service-detail-blocks article {
    min-height: 88px;
    padding: 0 18px 0 54px;
  }
  .service-detail-blocks article::before,
  .service-detail-blocks article::after {
    left: 4px;
    top: 44px;
    width: 22px;
  }
  .service-detail-blocks article.is-open { padding-bottom: 28px; }
  .service-detail-blocks h3 { min-height: 87px; font-size: 28px; }
  .service-detail-blocks article > p,
  .service-detail-blocks article > ul { font-size: 14px; line-height: 1.6; }
  .service-cover { height: 66vw; min-height: 300px; }
  .service-close {
    padding: 82px 20px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-close h2 { font-size: 52px; }
  .service-enquiry-form { margin-top: 36px; grid-template-columns: 1fr; gap: 22px; }
  .service-enquiry-form label:last-of-type,
  .service-enquiry-consent { grid-column: 1; }
  .service-next { padding: 0 20px; }
  .service-next a { min-height: 110px; }
}
