@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --accent: #199eaf;
  --accent-soft: #4ba1b1;
  --ink: #101010;
  --muted: #606060;
  --line: #e5e5e5;
  --soft: #f6f6f6;
  --white: #ffffff;
  --header-height: 100px;
  --shell: 1366px;
  --page-padding: 40px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

.page-shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--page-padding);
}

.section-space {
  padding-block: 150px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  background: var(--white);
}

.header-inner {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr) 230px;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.site-logo,
.footer-logo {
  display: block;
  width: 150px;
}

.site-logo img,
.footer-logo img {
  width: 100%;
  height: auto;
}

.desktop-navigation > ul,
.mobile-navigation > ul,
.submenu,
.social-links,
.contact-details {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-navigation > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 38px);
}

.desktop-navigation a,
.mobile-navigation a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.desktop-navigation > ul > li > a,
.submenu-trigger > a {
  padding-block: 18px;
  white-space: nowrap;
}

.desktop-navigation a:hover,
.desktop-navigation a:focus-visible,
.mobile-navigation a:hover,
.mobile-navigation a:focus-visible {
  color: var(--accent);
}

.has-submenu {
  position: relative;
}

.submenu-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.submenu-trigger button {
  display: inline-grid;
  width: 26px;
  height: 26px;
  padding: 5px;
  place-items: center;
  border: 0;
  background: transparent;
}

.submenu-trigger button svg {
  transition: transform 0.25s ease;
}

.submenu {
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  z-index: 10;
  width: 260px;
  padding: 14px 0;
  visibility: hidden;
  opacity: 0;
  background: #3abbce;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.submenu li a {
  padding: 10px 20px;
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.submenu li a:hover,
.submenu li a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.25);
}

.desktop-navigation .has-submenu:hover > .submenu,
.desktop-navigation .has-submenu:focus-within > .submenu,
.desktop-navigation .has-submenu.submenu-open > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.has-submenu.submenu-open .submenu-trigger button svg {
  transform: rotate(180deg);
}

.outline-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px 20px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: var(--white);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.35;
  text-transform: uppercase;
  transition: color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.outline-button svg {
  width: 20px;
  height: 20px;
}

.outline-button:hover,
.outline-button:focus-visible {
  color: var(--white);
  background: var(--accent);
  transform: translateY(-7px);
}

.header-quote {
  justify-self: end;
  width: 226px;
}

.button-icon {
  font-size: 20px;
}

.mobile-menu-toggle,
.mobile-mail,
.mobile-menu {
  display: none;
}

.home-hero {
  min-height: calc(100vh - var(--header-height));
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-height));
  padding-right: 0;
}

.home-hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: clamp(36px, 6vw, 110px);
}

.eyebrow {
  margin-bottom: 16px;
  font-size: 20px;
}

.accent-line {
  width: 60px;
  height: 3px;
  margin-bottom: 24px;
  background: var(--accent);
}

.home-hero h1 {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.2;
}

.home-hero-image {
  min-height: 690px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.scroll-cue {
  display: grid;
  width: 58px;
  height: 92px;
  margin-top: 12px;
  place-items: end center;
  padding-bottom: 14px;
  border: 3px solid var(--ink);
  border-radius: 30px;
  font-size: 32px;
  line-height: 1;
  animation: cue-bob 2.4s ease-in-out infinite;
}

@keyframes cue-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.about-home {
  overflow: hidden;
  color: #f5f5f5;
  background: var(--accent-soft);
}

.about-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
  gap: clamp(50px, 7vw, 115px);
  align-items: center;
  padding-block: 150px;
}

.about-home-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 600;
}

.about-home-copy p {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.75;
}

.light-button {
  margin-top: 12px;
  color: var(--white);
  border: 2px solid var(--white);
  background: transparent;
}

.light-button:hover,
.light-button:focus-visible {
  color: var(--accent);
  background: var(--white);
}

.about-collage {
  position: relative;
  min-height: 600px;
}

.collage-image {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(3, 58, 67, 0.18);
  animation: float-image 6s ease-in-out infinite;
}

.collage-image-one {
  top: 0;
  left: 0;
  width: 43%;
  height: 70%;
}

.collage-image-two {
  right: 0;
  bottom: 0;
  width: 68%;
  height: 51%;
  animation-delay: -2s;
}

.collage-brand {
  position: absolute;
  top: -10px;
  right: 15%;
  width: 35%;
  padding: 7px 10px;
  background: var(--white);
  animation: float-brand 6s ease-in-out infinite;
}

@keyframes float-image {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

@keyframes float-brand {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, 10px, 0) rotate(1deg); }
}

.solutions-home {
  overflow: hidden;
}

.section-title {
  margin-bottom: 65px;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 600;
}

.solutions-title {
  max-width: 760px;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  perspective: 1600px;
}

.solution-card {
  min-height: 500px;
  outline: 0;
  perspective: 1200px;
}

.solution-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.solution-card:hover .solution-card-inner,
.solution-card:focus-within .solution-card-inner,
.solution-card.is-flipped .solution-card-inner {
  transform: rotateY(180deg);
}

.solution-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
  padding: 24px;
  color: var(--white);
  background-color: rgba(25, 25, 25, 0.28);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 35%, rgba(0, 0, 0, 0.55)), var(--card-image);
  background-position: center;
  background-size: cover;
  backface-visibility: hidden;
}

.solution-card-front {
  align-items: flex-end;
}

.solution-card-front h3 {
  margin-bottom: 12px;
  font-size: 27px;
  font-weight: 600;
}

.solution-card-front p {
  margin-bottom: 0;
  font-size: 15px;
}

.solution-card-back {
  align-items: center;
  justify-content: center;
  background-color: rgba(25, 158, 175, 0.78);
  background-blend-mode: multiply;
  transform: rotateY(180deg);
}

.solution-card-back a {
  padding: 13px 20px;
  border: 1px solid var(--white);
  border-radius: 7px;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease;
}

.solution-card-back a:hover,
.solution-card-back a:focus-visible {
  color: var(--accent);
  background: var(--white);
}

.trust-section {
  overflow: hidden;
}

.trust-title {
  margin-bottom: 80px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
}

.trust-logo {
  display: grid;
  min-width: 0;
  min-height: 112px;
  place-items: center;
}

.trust-logo img {
  width: 100%;
  max-width: 148px;
  max-height: 95px;
  object-fit: contain;
  filter: grayscale(1) saturate(0);
  opacity: 0.78;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.trust-logo:hover img {
  filter: grayscale(0) saturate(1);
  opacity: 1;
  transform: translateY(-5px);
}

.site-footer {
  background: var(--white);
}

.footer-information {
  display: grid;
  grid-template-columns: 1fr 0.85fr 0.95fr;
  gap: 75px;
  padding-top: 100px;
  padding-bottom: 55px;
}

.footer-information h2 {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
}

.footer-information p,
.footer-information a {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.75;
}

.footer-information a:hover,
.footer-information a:focus-visible {
  color: var(--accent);
}

.footer-contact-block {
  display: flex;
  gap: 20px;
}

.footer-icon {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 30px;
}

.footer-navigation {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr) 230px;
  align-items: center;
  gap: 30px;
  min-height: 135px;
  border-top: 1px solid #eef1fa;
  border-bottom: 1px solid #eef1fa;
}

.footer-navigation .footer-quote {
  justify-self: end;
  width: 226px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 82px;
}

.footer-bottom p {
  margin: 0;
  font-size: 11px;
}

.legal-links {
  display: flex;
  gap: 18px;
  font-size: 11px;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--accent);
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.social-links a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #eef1fa;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.25s ease, background 0.25s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--white);
  background: var(--accent);
}

.programme-page {
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 70px;
}

.programme-shell {
  max-width: 1280px;
}

.programme-header h1 {
  max-width: 780px;
  margin-bottom: 55px;
  font-size: clamp(42px, 4vw, 55px);
  font-weight: 600;
}

.programme-header p {
  max-width: 1220px;
  margin-bottom: 60px;
  font-size: 15px;
  line-height: 1.75;
}

.programme-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}

.programme-tabs button {
  position: relative;
  flex: 0 0 auto;
  padding: 18px 22px 20px;
  border: 0;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.programme-tabs button:first-child {
  padding-left: 0;
}

.programme-tabs button::after {
  position: absolute;
  right: 12px;
  bottom: -1px;
  left: 12px;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.programme-tabs button:first-child::after {
  left: 0;
}

.programme-tabs button[aria-selected="true"]::after,
.programme-tabs button:hover::after,
.programme-tabs button:focus-visible::after {
  transform: scaleX(1);
}

.programme-panel {
  padding: 55px 18px 0;
  animation: panel-in 0.42s ease both;
}

.programme-panel[hidden] {
  display: none;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.programme-panel h2 {
  margin-bottom: 25px;
  font-size: 25px;
  font-weight: 300;
}

.programme-panel p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.75;
}

.programme-image {
  width: min(100%, 1116px);
  max-height: 660px;
  margin-top: 48px;
  object-fit: cover;
}

.programme-image.portrait {
  width: min(56%, 760px);
  max-height: 820px;
  object-fit: cover;
}

.benefits-section {
  overflow: hidden;
  padding: 45px 0 100px;
}

.benefits-section h2 {
  margin-bottom: 60px;
  text-align: center;
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px;
}

.benefit {
  text-align: center;
}

.benefit img {
  width: 95px;
  height: 95px;
  margin: 0 auto 28px;
  object-fit: contain;
}

.benefit p {
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
}

.overlay-hero {
  position: relative;
  display: flex;
  min-height: 455px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: linear-gradient(rgba(25, 158, 175, 0.77), rgba(25, 158, 175, 0.77)), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.overlay-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 600;
}

.overlay-hero p {
  max-width: 690px;
  margin-bottom: 0;
  font-size: 16px;
}

.enterprise-story {
  overflow: hidden;
}

.enterprise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}

.enterprise-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 600;
}

.enterprise-copy p {
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.75;
}

.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 48px;
  text-align: center;
}

.counters strong,
.counters span {
  display: block;
}

.counters strong {
  color: var(--accent);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
}

.counters span {
  margin-top: 12px;
  font-size: 13px;
}

.enterprise-collage {
  position: relative;
  min-height: 610px;
}

.enterprise-collage img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.enterprise-collage img:first-child {
  top: 0;
  left: 0;
  width: 66%;
  height: 74%;
}

.enterprise-collage img:last-child {
  right: 0;
  bottom: 0;
  width: 66%;
  height: 62%;
}

.team-section {
  background: var(--soft);
}

.centered {
  text-align: center;
}

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

.team-member {
  text-align: center;
}

.team-member img {
  width: 210px;
  height: 210px;
  margin: 0 auto 22px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.team-member:hover img {
  filter: grayscale(0);
  transform: translateY(-6px);
}

.team-member h3 {
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: 600;
}

.team-member p {
  margin-bottom: 18px;
  font-size: 13px;
}

.linkedin-mark {
  color: var(--accent);
  font-weight: 600;
}

.contact-page {
  padding-top: 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(65px, 9vw, 135px);
  align-items: start;
  max-width: 1200px;
}

.contact-image img {
  width: 100%;
  max-height: 930px;
  object-fit: cover;
}

.contact-content h1 {
  margin-bottom: 36px;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 600;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(25, 158, 175, 0.65);
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.contact-details li > span:first-child {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 18px;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form > label,
.contact-form legend {
  font-size: 13px;
  font-weight: 500;
}

.contact-form input:not([type="radio"]),
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid #dedede;
  border-radius: 0;
  outline: 0;
  background: var(--white);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:not([type="radio"]),
.contact-form select {
  min-height: 52px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(25, 158, 175, 0.12);
}

.contact-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
}

.contact-form input[type="radio"] {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--accent);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-button {
  justify-self: start;
  min-height: 46px;
  padding: 8px 14px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--accent);
  font-size: 13px;
}

.gallery-hero {
  min-height: 475px;
}

.gallery-section {
  padding-bottom: 80px;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 85px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
  max-width: 1240px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #e5e5e5;
}

.gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 6; }
.gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 3; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 3; }
.gallery-item:nth-child(4) { grid-column: span 6; grid-row: span 5; }
.gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 3; }
.gallery-item:nth-child(6) { grid-column: span 3; grid-row: span 3; }
.gallery-item:nth-child(7) { grid-column: span 6; grid-row: span 5; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.4s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  content: "+";
  background: rgba(25, 158, 175, 0.42);
  font-size: 42px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(0.75);
  transform: scale(1.045);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 90px;
  align-items: center;
  padding: 55px;
  color: var(--white);
  background: rgba(7, 16, 18, 0.94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  display: grid;
  max-width: 1120px;
  max-height: calc(100vh - 100px);
  margin: 0 auto;
  place-items: center;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100vh - 135px);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  font-size: 13px;
}

.lightbox-close,
.lightbox-control {
  display: grid;
  place-items: center;
  color: var(--white);
  border: 0;
  background: transparent;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 34px;
}

.lightbox-control {
  width: 64px;
  height: 64px;
  font-size: 42px;
}

.lightbox-next {
  justify-self: end;
}

.legal-page {
  max-width: 1050px;
}

.legal-page h1 {
  margin-bottom: 55px;
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 600;
}

.legal-page h2 {
  margin-top: 46px;
  margin-bottom: 17px;
  font-size: 28px;
  font-weight: 600;
}

.legal-page h3 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-manage-button {
  margin-top: 15px;
}

.simple-message {
  display: flex;
  min-height: 68vh;
  align-items: center;
}

.simple-message > div {
  max-width: 940px;
}

.simple-message h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 600;
}

.simple-message p:not(.eyebrow) {
  margin-bottom: 36px;
  font-size: 18px;
}

.cookie-dialog {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 400;
  width: min(500px, calc(100% - 40px));
  padding: 30px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.cookie-dialog[hidden] {
  display: none;
}

.cookie-dialog h2 {
  margin-bottom: 17px;
  font-size: 15px;
  font-weight: 500;
}

.cookie-dialog > p {
  margin-bottom: 20px;
  font-size: 11px;
  line-height: 1.55;
}

.cookie-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 0;
  background: transparent;
  font-size: 18px;
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cookie-actions button {
  min-height: 48px;
  padding: 9px 12px;
  border: 1px solid #eeeeee;
  background: #fafafa;
  font-size: 12px;
}

.cookie-actions .cookie-primary {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
}

.cookie-actions .cookie-save {
  grid-column: 1 / -1;
}

.cookie-actions [hidden] {
  display: none;
}

.cookie-preferences {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  padding: 14px;
  background: var(--soft);
}

.cookie-preferences[hidden] {
  display: none;
}

.cookie-preferences label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.cookie-policy-link {
  display: block;
  margin-top: 13px;
  text-align: center;
  color: #526e73;
  font-size: 10px;
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --page-padding: 30px;
  }

  .header-inner,
  .footer-navigation {
    grid-template-columns: 160px minmax(0, 1fr) 190px;
  }

  .desktop-navigation > ul {
    gap: 17px;
  }

  .desktop-navigation a {
    font-size: 14px;
  }

  .header-quote,
  .footer-navigation .footer-quote {
    width: 190px;
    font-size: 13px;
  }

  .about-home-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  }

  .solution-card {
    min-height: 430px;
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 95px;
    --page-padding: 28px;
  }

  .section-space {
    padding-block: 100px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .site-logo {
    width: 120px;
  }

  .header-inner .desktop-navigation,
  .header-quote {
    display: none;
  }

  .mobile-mail {
    display: block;
    margin-left: auto;
    color: var(--accent);
    font-size: 24px;
  }

  .mobile-menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 6px;
    place-items: center;
    color: var(--accent);
    border: 0;
    background: transparent;
    font-size: 30px;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    flex-direction: column;
    padding: 80px 45px 45px;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    transform: scaleX(0.98);
    transform-origin: right center;
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1), visibility 0.45s;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: scaleX(1);
  }

  .mobile-menu-close {
    position: absolute;
    top: 38px;
    right: 38px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border: 0;
    background: transparent;
    font-size: 26px;
  }

  .mobile-navigation > ul {
    display: grid;
    gap: 26px;
  }

  .mobile-navigation a {
    font-size: 16px;
  }

  .mobile-navigation .submenu-trigger {
    justify-content: flex-start;
  }

  .mobile-navigation .submenu {
    position: static;
    display: grid;
    width: 100%;
    max-height: 0;
    padding: 0 0 0 18px;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    background: transparent;
    box-shadow: none;
    transform: none;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .mobile-navigation .has-submenu.submenu-open > .submenu {
    max-height: 340px;
    padding-top: 13px;
  }

  .mobile-navigation .submenu li a {
    padding: 7px 0;
    color: var(--ink);
    font-size: 13px;
    text-transform: none;
  }

  .mobile-quote {
    align-self: flex-start;
    margin-top: 38px;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }

  .home-hero-copy {
    min-height: 430px;
    padding: 55px var(--page-padding) 70px;
  }

  .home-hero-image {
    min-height: 620px;
  }

  .about-home-grid {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-block: 100px;
  }

  .about-home-copy p {
    font-size: 16px;
  }

  .about-collage {
    min-height: 620px;
  }

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

  .footer-information {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-navigation {
    display: none;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 42px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .enterprise-grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .enterprise-collage {
    min-height: 640px;
  }

  .contact-grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    gap: 55px;
  }
}

@media (max-width: 767px) {
  :root {
    --page-padding: 20px;
  }

  .section-space {
    padding-block: 85px;
  }

  .mobile-mail {
    display: none;
  }

  .home-hero-copy {
    min-height: 310px;
    padding-top: 22px;
    padding-bottom: 68px;
  }

  .eyebrow {
    font-size: 20px;
  }

  .home-hero h1 {
    margin-bottom: 0;
    font-size: 31px;
  }

  .home-hero-image {
    min-height: 470px;
  }

  .scroll-cue {
    display: none;
  }

  .about-home-grid {
    gap: 55px;
    padding-block: 75px;
  }

  .about-home-copy h2 {
    font-size: 34px;
  }

  .about-home-copy p {
    font-size: 15px;
  }

  .about-collage {
    min-height: 500px;
  }

  .collage-image-one {
    width: 58%;
    height: 68%;
  }

  .collage-image-two {
    width: 70%;
    height: 43%;
  }

  .collage-brand {
    top: -10px;
    right: 0;
    width: 38%;
  }

  .section-title,
  .solutions-title {
    font-size: 35px;
  }

  .solution-cards {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .solution-card {
    min-height: 500px;
  }

  .trust-section {
    padding-top: 95px;
    padding-bottom: 65px;
  }

  .trust-title {
    margin-bottom: 65px;
    font-size: 18px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 18px;
  }

  .trust-logo {
    min-height: 75px;
  }

  .trust-logo img {
    max-width: 100px;
    max-height: 70px;
  }

  .footer-information {
    gap: 48px;
    padding-top: 65px;
    padding-bottom: 45px;
  }

  .footer-information h2 {
    font-size: 15px;
  }

  .footer-information p,
  .footer-information a {
    font-size: 13px;
  }

  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .programme-page {
    padding-top: 80px;
    padding-bottom: 55px;
  }

  .programme-header h1 {
    margin-bottom: 34px;
    font-size: 40px;
  }

  .programme-header p {
    margin-bottom: 45px;
    font-size: 14px;
  }

  .programme-tabs {
    display: grid;
    overflow: visible;
  }

  .programme-tabs button,
  .programme-tabs button:first-child {
    width: 100%;
    padding: 17px 0 18px;
    text-align: left;
    white-space: normal;
  }

  .programme-tabs button::after,
  .programme-tabs button:first-child::after {
    right: 0;
    left: 0;
  }

  .programme-panel {
    padding: 48px 0 0;
  }

  .programme-panel h2 {
    font-size: 27px;
  }

  .programme-panel p {
    font-size: 14px;
  }

  .programme-image,
  .programme-image.portrait {
    width: 100%;
    max-height: 600px;
    margin-top: 34px;
  }

  .benefits-section {
    padding: 60px 0 65px;
  }

  .benefits-section h2 {
    margin-bottom: 52px;
    font-size: 37px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 55px 24px;
  }

  .benefit img {
    width: 78px;
    height: 78px;
  }

  .benefit p {
    font-size: 12px;
  }

  .overlay-hero,
  .gallery-hero {
    min-height: 340px;
  }

  .overlay-hero h1 {
    font-size: 36px;
  }

  .overlay-hero p {
    font-size: 14px;
  }

  .enterprise-grid {
    gap: 55px;
  }

  .enterprise-copy h2 {
    font-size: 31px;
  }

  .enterprise-copy p {
    font-size: 13px;
  }

  .counters {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .enterprise-collage {
    min-height: 480px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 65px 25px;
  }

  .team-member img {
    width: 145px;
    height: 145px;
  }

  .contact-page {
    padding-top: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-image {
    padding-inline: 0;
  }

  .contact-image img {
    max-height: 700px;
  }

  .contact-content h1 {
    font-size: 37px;
  }

  .gallery-section {
    padding-top: 90px;
  }

  .gallery-grid {
    grid-auto-rows: 64px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 5px;
  }

  .gallery-item:nth-child(1) { grid-column: span 3; grid-row: span 6; }
  .gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 3; }
  .gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 3; }
  .gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 5; }
  .gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 3; }
  .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(7) { grid-column: span 4; grid-row: span 5; }

  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    padding: 40px 8px;
  }

  .lightbox-control {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .legal-page h1 {
    font-size: 40px;
  }

  .legal-page h2 {
    font-size: 24px;
  }

  .cookie-dialog {
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 92vh;
    padding: 48px 20px 22px;
    overflow-y: auto;
    border-radius: 10px 10px 0 0;
  }

  .cookie-dialog h2 {
    display: none;
  }

  .cookie-dialog > p {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .cookie-actions button {
    min-height: 54px;
    font-size: 14px;
  }
}

@media (max-width: 478px) {
  .site-logo {
    width: 100px;
  }

  .mobile-menu {
    padding: 85px 45px 40px;
  }

  .home-hero-copy {
    min-height: 310px;
  }

  .home-hero-image {
    min-height: 470px;
    background-position: center center;
  }

  .about-collage {
    min-height: 470px;
  }

  .solutions-home {
    padding-top: 92px;
  }

  .solution-card-front {
    padding: 20px;
  }

  .solution-card-front h3 {
    font-size: 28px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-member img {
    width: 190px;
    height: 190px;
  }

  .enterprise-collage {
    min-height: 390px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 52px;
  }

  .simple-message h1 {
    font-size: 42px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
