:root {
  --display-font: 'Domine', Georgia, 'Times New Roman', serif;
  --body-font: 'Domine', Georgia, 'Times New Roman', serif;
  --ink: #172333;
  --muted: #5e7080;
  --tertiary: #c0c0c0;
  --blue: #1686d9;
  --blue-deep: #0a5f9f;
  --blue-light: #8fcdf2;
  --line: #d9e5ed;
  --surface: #f7fafc;
  --white: #fff;
  --shadow: 0 18px 55px rgba(23, 35, 51, 0.11);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  overscroll-behavior-y: none;
  background: var(--white);
  background-attachment: fixed;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  background-attachment: fixed;
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.6;
  overscroll-behavior-y: none;
}

main {
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border: 3px solid var(--white);
  background: var(--blue-deep);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

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

main:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.container.narrow {
  width: min(820px, calc(100% - 40px));
}

.site-chrome {
  position: sticky;
  top: 0;
  z-index: 25;
}

.event-banner {
  position: relative;
  z-index: 25;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
  overflow: hidden;
  background: var(--blue-deep);
  color: white;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.event-banner[hidden] {
  display: none;
}

.event-banner-track {
  position: relative;
  display: block;
  width: calc(100% - 44px);
  height: 22px;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 94%, transparent);
}

.event-banner-message {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  opacity: 0;
  color: inherit;
  text-decoration: none;
  animation: event-banner-message var(--banner-duration, 60s) linear infinite;
  animation-delay: var(--message-delay, 0s);
  will-change: transform;
}

@keyframes event-banner-message {
  0% {
    opacity: 1;
    transform: translate(100vw, -50%);
  }

  32% {
    opacity: 1;
    transform: translate(-100%, -50%);
  }

  32.1%,
  100% {
    opacity: 0;
    transform: translate(-100%, -50%);
  }
}

.event-banner-single .event-banner-message {
  opacity: 1;
  animation: event-banner-single-message 20s linear infinite;
}

@keyframes event-banner-single-message {
  from {
    transform: translate(100vw, -50%);
  }

  to {
    transform: translate(-100%, -50%);
  }
}

.event-banner-link {
  white-space: nowrap;
}

.event-banner-reduced {
  display: none;
  color: inherit;
  text-decoration: underline;
}

.event-banner-separator {
  margin-inline: 5px;
}

.event-banner-close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 44px;
  height: 100%;
  min-height: 42px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
}

.event-banner-close:hover {
  color: rgba(255, 255, 255, 0.72);
}

.event-banner-close:focus-visible {
  outline: 2px solid white;
  outline-offset: -4px;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 229, 237, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-inline: clamp(14px, 2vw, 28px);
}

.brand {
  display: inline-flex;
  text-decoration: none;
}

.brand-lockup {
  display: grid;
  grid-template-columns: 76px auto;
  grid-template-rows: 42px 34px;
  column-gap: 0;
  row-gap: 2px;
  align-items: center;
}

.brand-text {
  display: contents;
}

.brand-mark {
  grid-row: 1 / 3;
  align-self: start;
  width: 80px;
  height: 80px;
  object-fit: contain;
  transform: translateY(-6px);
}

.brand-name {
  display: block;
  align-self: end;
  color: var(--blue-deep);
  font-family: var(--display-font);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.12;
  transform: translate(-8px, 12px);
}

.brand-name-muted {
  color: var(--muted);
  font-size: 25px;
}

.brand-name-ltd {
  color: var(--muted);
  font-size: 17px;
}

.brand-tagline {
  display: block;
  align-self: start;
  color: var(--tertiary);
  font-family: var(--display-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  transform: translate(-8px, 12px);
}

.nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link,
.footer-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.nav-link:hover,
.footer-link:hover {
  color: var(--blue-deep);
  background: #eef7fd;
}

.nav-link.is-active {
  color: var(--blue-deep);
  background: transparent;
}

.nav-link.is-active::after {
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 4px;
  border-radius: 0;
  background: var(--blue);
  content: '';
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 100px);
  overflow: hidden;
  background: var(--white);
}

.hero::before {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: clamp(130px, 20vh, 240px);
  background: linear-gradient(180deg, rgba(222, 240, 250, 0) 0%, rgba(222, 240, 250, 0.82) 56%, #def0fa 100%);
  content: '';
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(22, 134, 217, 0.3) 0%, rgba(22, 134, 217, 0.22) 58%, rgba(222, 240, 250, 0.34) 100%),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.72) 0 18%, rgba(255, 255, 255, 0.42) 38%, rgba(255, 255, 255, 0.16) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.38) 72%, rgba(255, 255, 255, 0.72) 100%);
  content: '';
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 18% center;
  opacity: 0.88;
  filter: blur(3px) saturate(0.98) contrast(0.94);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(1120px, calc(100% - 40px));
  min-height: 100svh;
  align-items: center;
  margin: 0 auto;
  padding-top: clamp(108px, 18vh, 170px);
  padding-bottom: clamp(48px, 10vh, 96px);
}

.hero-statement {
  margin-bottom: 34px;
  text-align: center;
}

.hero-title {
  max-width: 920px;
  margin: 0 auto;
  color: var(--blue-deep);
  font-family: var(--display-font);
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 700;
  line-height: 1.16;
}

.hero-copy {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-family: var(--display-font);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 500;
  line-height: 1.46;
  text-align: center;
}

.service-circle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
}

.service-circle {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  padding: 26px;
  border: 1px solid rgba(10, 95, 159, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.5) 64%),
    rgba(255, 255, 255, 0.32);
  box-shadow: 0 8px 24px rgba(23, 35, 51, 0.065);
  color: var(--blue-deep);
  font-family: var(--display-font);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
  text-decoration: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.service-circle-title {
  display: block;
}

.service-circle-title > span {
  display: block;
}

@media (hover: hover) {
  .service-circle:hover {
    border-color: rgba(22, 134, 217, 0.5);
    background:
      radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.74) 68%),
      rgba(232, 246, 255, 0.62);
    box-shadow: 0 30px 86px rgba(10, 95, 159, 0.28);
    transform: translateY(-8px) scale(1.035);
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-family: var(--display-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
.card-title {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 700;
  line-height: 1.16;
}

h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 64px);
}

h2 {
  max-width: 780px;
  font-size: clamp(32px, 4vw, 46px);
}

h3,
.card-title {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

.section {
  padding: clamp(64px, 9vw, 104px) 0;
}

.service-details-section {
  background: linear-gradient(180deg, #def0fa 0%, var(--white) 18%, var(--white) 100%);
  padding-top: clamp(52px, 7vw, 78px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.about-section {
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(72px, 10vw, 118px);
}

.contact-section {
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(36px, 5vw, 56px);
}

.one-page-section,
.service-details-section {
  scroll-margin-top: 112px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 34px;
}

.section-heading-stacked {
  align-items: end;
}

.section-heading > p,
.archive-description {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.section-title {
  position: relative;
  color: var(--blue-deep);
  font-size: clamp(30px, 4vw, 44px);
}

.section-title::after {
  content: '';
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 14px;
  background: var(--blue);
}

.grid {
  display: grid;
  gap: 22px;
}

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

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(23, 35, 51, 0.06);
}

.card-link {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: inherit;
  text-decoration: none;
}

.card p,
.rich-copy p,
.service-detail p {
  color: var(--muted);
}

.link-text,
.text-link {
  margin-top: auto;
  color: var(--blue-deep);
  font-weight: 800;
  text-decoration: none;
}

.text-link {
  align-self: end;
  white-space: nowrap;
}

.about-news-band {
  position: relative;
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
}

.about-section {
  position: relative;
  z-index: 2;
  overflow: visible;
  background: transparent;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-page {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.about-heading {
  margin-bottom: 32px;
}

.keep-together {
  white-space: nowrap;
}

.about-page .rich-copy {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 64px);
  margin-top: 0;
}

.about-page .rich-copy > * + * {
  margin-top: 0;
}

.about-copy-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.about-copy-column:last-child {
  overflow: hidden;
}

.about-column-logo {
  display: flex;
  min-height: clamp(150px, 15vw, 190px);
  align-items: flex-end;
  align-self: stretch;
  justify-content: flex-end;
  margin-top: auto;
  pointer-events: none;
}

.about-column-logo img {
  width: clamp(180px, 18vw, 230px);
  height: clamp(180px, 18vw, 230px);
  object-fit: contain;
  opacity: 0.18;
  transform: translate(36px, 24px);
}

.about-page .rich-copy p {
  break-inside: avoid;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.about-page .rich-copy p + p {
  margin-top: 18px;
}

.about-copy-column:first-child p:nth-child(2) {
  margin-top: 49px;
}

.owner-profile-link {
  position: relative;
  z-index: 3;
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--blue-deep);
  font-weight: 700;
}

.owner-profile-link a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.owner-profile-link a:hover {
  text-decoration: underline;
}

.news-preview-section {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.news-preview-section::before {
  position: absolute;
  top: -180px;
  right: -8%;
  bottom: -1px;
  left: -8%;
  z-index: -1;
  border-radius: 50% 50% 0 0 / 190px 190px 0 0;
  background: var(--blue-deep);
  content: '';
}

.news-preview-heading {
  align-items: end;
}

.news-preview-heading .section-title,
.news-preview-heading > p {
  color: var(--white);
}

.news-preview-heading .section-title::after {
  background: var(--blue-light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.news-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(4, 45, 78, 0.2);
}

.news-card-link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.news-card:hover,
.news-card:focus-within {
  border-color: rgba(22, 134, 217, 0.64);
}

.news-card-link:hover,
.news-card-link:focus-visible {
  background: var(--white);
}

.news-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.news-card-type {
  color: var(--blue-deep);
  text-transform: uppercase;
}

.news-card h2,
.news-card h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 22px;
  line-height: 1.35;
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.news-card-read-more {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--blue-deep);
  font-weight: 800;
}

.news-preview-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.button.news-view-all {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.button.news-view-all:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--blue-deep);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 0;
  background: #eef7fd;
  color: var(--blue-deep);
}

.rich-copy {
  margin-top: 24px;
}

.rich-copy > * + * {
  margin-top: 18px;
}

.rich-subheading {
  color: var(--blue-deep);
  font-size: 18px;
  line-height: 1.3;
}

.service-detail > h3,
.contact-grid .card h3,
.card-title {
  color: var(--blue-deep);
}

.lede {
  max-width: 780px;
  color: var(--ink);
  font-size: 20px;
}

.service-list {
  display: grid;
  gap: 34px;
}

.service-detail {
  scroll-margin-top: 122px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.contact-section {
  background: var(--blue-deep);
}

.contact-section .section-heading {
  margin-bottom: 28px;
}

.contact-section .eyebrow,
.contact-heading-title {
  color: var(--white);
}

.contact-heading-title {
  display: inline-block;
}

.contact-heading-title::after {
  content: '';
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 14px;
  background: var(--blue-light);
}

.footer-brand-area {
  box-shadow: none;
}

.contact-section .card,
.contact-section .enquiry-form {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 20px 44px rgba(4, 45, 78, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-card-heading,
.contact-method {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.card .contact-method {
  margin: 0;
  color: var(--blue-deep);
  font-weight: 800;
}

.card .contact-method a {
  color: inherit;
  text-decoration: none;
}

.card .contact-method a:hover {
  text-decoration: underline;
}

.contact-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  flex: 0 0 auto;
}

.contact-icon-email {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-icon-phone {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.91.33 1.8.62 2.65a2 2 0 0 1-.45 2.11L8.09 9.67a16 16 0 0 0 6.24 6.24l1.19-1.19a2 2 0 0 1 2.11-.45c.85.29 1.74.5 2.65.62A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.91.33 1.8.62 2.65a2 2 0 0 1-.45 2.11L8.09 9.67a16 16 0 0 0 6.24 6.24l1.19-1.19a2 2 0 0 1 2.11-.45c.85.29 1.74.5 2.65.62A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.enquiry-panel {
  margin-top: 28px;
}

.contact-direct {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px 20px;
  align-items: center;
  justify-content: flex-start;
  margin-top: clamp(28px, 4vw, 40px);
}

.contact-direct.contact-direct-only {
  margin-top: 0;
}

.contact-direct-heading {
  flex: 0 0 auto;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.contact-direct-methods {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 16px 84px;
  align-items: center;
}

.contact-direct .contact-method {
  margin: 0;
  font-size: clamp(20px, 2vw, 24px);
  white-space: nowrap;
}

.contact-direct .contact-icon {
  width: 30px;
  height: 30px;
}

.enquiry-form {
  display: grid;
  gap: 18px;
  border-top: 6px solid var(--blue);
}

.contact-form-title {
  margin: 0;
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 1.25;
  text-align: left;
}

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

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 800;
}

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}

.required-marker {
  color: #d33a2c;
  font-size: 16px;
  line-height: 1;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: 3px solid rgba(22, 134, 217, 0.18);
  border-color: var(--blue);
}

.service-interest-fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.service-interest-fieldset legend {
  padding: 0 8px;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 800;
}

.service-interest-fieldset p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.service-interest-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.enquiry-form .service-interest-option {
  display: flex;
  min-height: 46px;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.enquiry-form .service-interest-option input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--blue-deep);
}

.enquiry-form .service-interest-option span {
  display: block;
}

.form-actions {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.form-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: 0;
  font-weight: 800;
}

.form-message p {
  margin: 0;
}

.form-message p + p {
  margin-top: 6px;
}

.form-message-success {
  background: #eef7fd;
  color: var(--blue-deep);
}

.form-message-error {
  background: #fff3f0;
  color: #9c341f;
}

.enquiry-honeypot {
  position: absolute;
  left: -9999px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--blue);
  border-radius: 0;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

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

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

.button-secondary:hover {
  border-color: var(--blue-deep);
  background: #eef7fd;
  color: var(--blue-deep);
}

.page-main {
  padding: clamp(76px, 10vw, 130px) 0;
}

.news-archive-main {
  min-height: 60vh;
  background: var(--white);
}

.news-archive-header h1 {
  color: var(--blue-deep);
  font-size: clamp(38px, 5vw, 54px);
}

.news-archive-header h1::after,
.legal-header h1::after {
  content: '';
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 14px;
  background: var(--blue);
}

.news-article h1 {
  color: var(--blue-deep);
}

.news-archive-header .archive-description {
  margin-top: 16px;
  font-size: 18px;
}

.news-archive-grid .news-card {
  box-shadow: 0 10px 34px rgba(23, 35, 51, 0.08);
}

.news-item-main {
  min-height: 60vh;
  background: linear-gradient(180deg, #def0fa 0, var(--white) 220px);
}

.news-article {
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(23, 35, 51, 0.09);
}

.article-back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.article-back-link::before {
  margin-right: 8px;
  content: '←';
}

.article-back-link:hover {
  text-decoration: underline;
}

.news-article-meta {
  margin-bottom: 14px;
}

.article {
  max-width: 820px;
  margin: 0 auto;
}

.article .entry-content {
  margin-top: 24px;
}

.legal-main {
  min-height: 60vh;
  background: var(--white);
}

.legal-article {
  max-width: 880px;
}

.legal-header h1 {
  color: var(--blue-deep);
  font-size: clamp(38px, 5vw, 54px);
}

.legal-updated {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.legal-content {
  margin-top: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-content > * {
  margin-top: 0;
  margin-bottom: 0;
}

.legal-content > * + * {
  margin-top: 18px;
}

.legal-content h2 {
  padding-top: 18px;
  color: var(--blue-deep);
  font-size: 24px;
}

.legal-content h3 {
  padding-top: 10px;
  color: var(--ink);
  font-size: 20px;
}

.legal-content ul {
  padding-left: 25px;
}

.legal-content li + li {
  margin-top: 10px;
}

.legal-content section {
  scroll-margin-top: 130px;
}

.legal-content a,
.footer-policy-links a {
  color: var(--blue-deep);
  font-weight: 800;
}

.privacy-contents {
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.privacy-contents h2 {
  padding-top: 0;
}

.privacy-contents ul {
  margin-bottom: 0;
}

.privacy-contact {
  display: grid;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}

.privacy-contact > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.25fr) minmax(0, 1fr);
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-contact dt {
  color: var(--blue-deep);
  font-weight: 800;
}

.privacy-contact dd {
  margin: 0;
}

.privacy-rights strong,
.privacy-complaint-contact strong,
.ico-contact strong {
  color: var(--ink);
}

.ico-contact {
  padding: 22px 24px;
  border-left: 4px solid var(--blue);
  background: var(--surface);
  color: var(--muted);
  font-style: normal;
}

.cookie-record {
  display: grid;
  margin: 26px 0;
  border-top: 1px solid var(--line);
}

.cookie-record > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.32fr) minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cookie-record dt {
  color: var(--blue-deep);
  font-weight: 800;
}

.cookie-record dd {
  margin: 0;
}

.archive-header {
  margin-bottom: 34px;
}

.archive-grid {
  align-items: stretch;
}

.site-footer {
  border-top: 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--white) 52%, #f0f8fd 78%, #dceefa 100%);
  color: var(--muted);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: clamp(52px, 8vw, 112px);
  padding: 34px 0;
}

.footer-brand-area {
  display: grid;
  justify-items: start;
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer .brand {
  transform: none;
}

.site-footer .brand-mark {
  border-radius: 0;
  background: transparent;
}

.footer-brand-area .footer-social {
  justify-self: stretch;
  margin-top: 10px;
  margin-left: 76px;
  padding-top: 12px;
  border-top: 1px solid #dedede;
}

.footer-meta {
  display: grid;
  gap: 10px;
  justify-items: end;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.site-footer .brand-name {
  color: var(--blue-deep);
}

.site-footer .brand-name-muted,
.site-footer .brand-name-ltd {
  color: var(--muted);
}

.site-footer .brand-tagline {
  color: var(--tertiary);
}

.footer-meta .footer-nav {
  justify-content: flex-end;
}

.site-footer .footer-link {
  color: var(--muted);
}

.site-footer .footer-link:hover {
  color: var(--blue-deep);
  background: #eef7fd;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

.social-link {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 0;
  background: linear-gradient(var(--blue-deep), var(--blue-deep)) center / 28px 28px no-repeat;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.social-link-facebook {
  font-size: 18px;
}

.social-link:hover {
  background: linear-gradient(var(--blue), var(--blue)) center / 28px 28px no-repeat;
}

.footer-meta p {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin: 0;
}

.footer-legal {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  justify-items: end;
  font-size: 12px;
  line-height: 1.55;
}

.footer-meta .footer-legal-detail {
  color: var(--muted);
}

.footer-policy-links a:hover {
  color: var(--blue);
}

@media (min-width: 821px) {
  .service-details-section,
  .about-section,
  .news-preview-section,
  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading,
  .contact-section .section-heading {
    margin-bottom: 32px;
  }

  .service-list {
    gap: 32px;
  }

  .contact-direct {
    margin-top: 32px;
  }

  .footer-inner {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 132px;
  }

  .header-inner,
  .footer-inner,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-inner {
    min-height: auto;
    align-items: center;
    gap: 10px;
    padding-block: 8px;
  }

  .site-header .brand {
    justify-content: center;
    width: 100%;
  }

  .brand-lockup {
    grid-template-columns: 66px auto;
    grid-template-rows: 34px 26px;
  }

  .brand-mark {
    width: 70px;
    height: 70px;
    transform: translateY(-4px);
  }

  .brand-name {
    font-size: 22px;
    transform: translate(-6px, 8px);
  }

  .brand-name-muted {
    font-size: 19px;
  }

  .brand-name-ltd {
    font-size: 13px;
  }

  .brand-tagline {
    font-size: 12px;
    transform: translate(-6px, 7px);
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    bottom: -2px;
    height: 168px;
    background: linear-gradient(180deg, rgba(222, 240, 250, 0) 0%, rgba(222, 240, 250, 0.72) 42%, #def0fa 78%, #def0fa 100%);
  }

  .hero-inner {
    width: min(430px, calc(100% - 32px));
    min-height: clamp(500px, 64svh, 590px);
    align-items: end;
    padding-top: 72px;
    padding-bottom: 32px;
  }

  .hero-statement {
    margin-bottom: 22px;
  }

  .hero-title {
    font-size: clamp(34px, 9vw, 38px);
  }

  .hero-copy {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.38;
  }

  .section {
    padding: 44px 0;
  }

  .service-details-section {
    padding-top: 56px;
    padding-bottom: 34px;
  }

  .about-section {
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .contact-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 0;
  }

  .site-footer .brand {
    transform: none;
  }

  .footer-brand-area .footer-social {
    margin-top: 4px;
    margin-left: 0;
  }

  .nav,
  .footer-nav {
    flex-wrap: wrap;
  }

  .nav {
    display: grid;
    width: min(100%, 520px);
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-inline: auto;
  }

  .nav-link {
    justify-content: center;
    min-height: 44px;
    padding: 0 4px;
    font-size: 14px;
    text-align: center;
  }

  .nav-link:hover {
    background: transparent;
  }

  .nav-link.is-active::after {
    right: 8px;
    bottom: 0;
    left: 8px;
    height: 3px;
  }

  .service-circle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .grid.three,
  .news-grid,
  .contact-grid,
  .form-grid,
  .service-interest-options {
    grid-template-columns: 1fr;
  }

  .service-circle {
    width: 100%;
    min-height: auto;
    aspect-ratio: 1;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 5px 14px rgba(23, 35, 51, 0.05);
    font-size: 12px;
    line-height: 1.2;
  }

  .about-page {
    padding: 30px 26px 36px;
  }

  .about-page .rich-copy p {
    font-size: 17px;
    line-height: 1.62;
  }

  .about-page .rich-copy p + p {
    margin-top: 15px;
  }

  .about-copy-column:first-child p:nth-child(2) {
    margin-top: 43px;
  }

  .about-page .rich-copy {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .about-column-logo {
    min-height: 96px;
  }

  .about-column-logo img {
    width: 130px;
    height: 130px;
    transform: translate(24px, 18px);
  }

  .news-preview-section::before {
    top: -110px;
    border-radius: 50% 50% 0 0 / 120px 120px 0 0;
  }

  .news-card-link {
    padding: 22px;
  }

  .news-card h2,
  .news-card h3 {
    font-size: 20px;
  }

  .news-preview-actions {
    justify-content: stretch;
    margin-top: 24px;
  }

  .news-view-all {
    width: 100%;
  }

  .rich-copy > * + * {
    margin-top: 15px;
  }

  .owner-profile-link {
    margin-top: 22px;
    padding-top: 14px;
  }

  .service-detail,
  .card {
    padding: 22px;
  }

  .service-list {
    gap: 24px;
  }

  .service-detail {
    scroll-margin-top: 142px;
  }

  .button-row {
    margin-top: 20px;
  }

  .contact-section .section-heading {
    margin-bottom: 20px;
  }

  .enquiry-panel {
    margin-top: 20px;
  }

  .enquiry-form {
    gap: 14px;
  }

  .service-interest-fieldset {
    gap: 10px;
    padding: 14px;
  }

  .enquiry-form .service-interest-option {
    min-height: 42px;
    padding: 9px 10px;
  }

  .contact-direct {
    margin-top: 24px;
  }

  .footer-legal {
    margin-top: 10px;
  }

  .footer-meta {
    justify-items: end;
    text-align: right;
  }

  .footer-meta p {
    justify-content: flex-end;
  }

  .brand-name {
    font-size: 22px;
  }
}

@media (hover: hover) and (max-width: 820px) {
  .service-circle:hover {
    border-color: rgba(22, 134, 217, 0.5);
    background:
      radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.78) 68%),
      rgba(232, 246, 255, 0.62);
    box-shadow: 0 10px 24px rgba(10, 95, 159, 0.16);
    transform: translateY(-8px) scale(1.035);
  }
}

@media (max-width: 680px) {
  .cookie-record > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-direct,
  .contact-direct-methods {
    flex-wrap: wrap;
  }

  .contact-direct {
    align-items: flex-start;
  }

  .contact-direct-methods {
    flex: 1 1 100%;
    width: 100%;
    gap: 16px 24px;
  }

  .contact-direct-heading,
  .contact-direct .contact-method {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-banner {
    justify-content: center;
    padding: 10px 20px;
  }

  .event-banner-track {
    display: none;
  }

  .event-banner-reduced {
    display: inline-flex;
  }

  .service-circle {
    animation: none;
    transition: none;
  }

  .service-circle:hover {
    transform: none;
  }
}
