:root {
  --ink: #09212a;
  --ink-deep: #06171e;
  --ink-soft: #243d45;
  --teal: #12b8bb;
  --teal-bright: #27d0ca;
  --blue: #2eb3e8;
  --mist: #eef6f5;
  --warm: #f5f2eb;
  --white: #fff;
  --line: rgba(9, 33, 42, .13);
  --shadow: 0 26px 70px rgba(2, 24, 32, .15);
  --radius: 24px;
  --container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

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

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  transition: background .3s, box-shadow .3s, border-color .3s;
}

.site-header.scrolled {
  background: rgba(6, 23, 30, .96);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
}

.nav-wrap {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 180px;
  height: 62px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--teal-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  padding: 11px 17px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  transition: background .25s, border-color .25s;
}

.nav-cta:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.nav-cta svg {
  width: 17px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  animation: heroZoom 12s ease-out both;
}

@keyframes heroZoom {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 20, 27, .95) 0%, rgba(3, 20, 27, .72) 45%, rgba(3, 20, 27, .22) 78%),
    linear-gradient(0deg, rgba(3, 20, 27, .65), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 190px;
  align-self: center;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #198b9d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--teal-bright);
}

.eyebrow span {
  width: 38px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(52px, 6.1vw, 88px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.hero h1 em {
  color: var(--teal-bright);
  font-style: normal;
  font-weight: 800;
}

.hero-copy {
  max-width: 670px;
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, .78);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform .25s, background .25s, color .25s, border-color .25s;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
}

.button-primary {
  color: #032329;
  background: var(--teal-bright);
}

.button-primary:hover {
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .7);
}

.hero-meta {
  position: relative;
  z-index: 2;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-meta-grid {
  display: grid;
  min-height: 94px;
  grid-template-columns: 180px 220px 1fr;
  align-items: center;
}

.hero-meta-grid > div {
  display: flex;
  flex-direction: column;
}

.hero-meta-grid small,
.contact-details small {
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-meta-grid strong {
  font-size: 14px;
}

.hero-trust {
  flex-direction: row !important;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-bright);
}

.pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--teal-bright);
  border-radius: 50%;
  content: "";
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% { opacity: 0; transform: scale(1.55); }
}

.trust-strip {
  border-bottom: 1px solid var(--line);
}

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

.trust-grid > div {
  display: flex;
  min-height: 112px;
  padding: 0 28px;
  align-items: center;
  gap: 17px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border: 0;
}

.trust-grid span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

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

.section {
  padding: 130px 0;
}

.office-grid,
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  align-items: center;
  gap: 110px;
}

.office-images {
  position: relative;
  min-height: 580px;
}

.image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 76%;
  height: 510px;
  overflow: hidden;
  border-radius: 4px;
}

.image-main img,
.image-float img,
.why-visual > img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-main img {
  object-position: 42% center;
}

.image-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 47%;
  height: 260px;
  overflow: hidden;
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  z-index: 2;
  right: 12%;
  top: 33px;
  display: flex;
  width: 165px;
  height: 165px;
  padding: 25px;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(6, 23, 30, .25);
  transform: rotate(7deg);
}

.experience-badge svg {
  width: 25px;
  color: var(--teal-bright);
}

.experience-badge span {
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
}

.experience-badge strong {
  color: var(--teal-bright);
}

.section-kicker {
  margin: 0 0 16px;
}

.section-kicker::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-kicker.light {
  color: var(--teal-bright);
}

.office-copy h2,
.section-heading h2,
.why-copy h2,
.gallery-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(39px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.12;
}

.office-copy .lead {
  margin: 28px 0 20px;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 600;
}

.office-copy > p:not(.section-kicker):not(.lead) {
  color: #66777c;
}

.signature-line {
  display: flex;
  margin-top: 30px;
  padding-left: 20px;
  flex-direction: column;
  border-left: 3px solid var(--teal);
}

.signature-line span {
  font-weight: 800;
}

.signature-line small {
  color: #718086;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  color: var(--teal);
  font-size: 18px;
}

.services-section {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(18, 184, 187, .15), transparent 32%),
    var(--ink-deep);
}

.section-heading,
.gallery-heading {
  display: flex;
  margin-bottom: 68px;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading > p,
.gallery-heading > p {
  max-width: 440px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .55);
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.service-card {
  display: grid;
  min-height: 156px;
  padding: 25px 10px;
  grid-template-columns: 55px 72px 1fr 50px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  transition: padding .25s, background .25s;
}

.service-card:hover {
  padding-right: 24px;
  padding-left: 24px;
  background: rgba(255, 255, 255, .04);
}

.service-number {
  align-self: start;
  padding-top: 13px;
  color: rgba(255, 255, 255, .32);
  font-size: 11px;
  font-weight: 800;
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--teal-bright);
  background: rgba(39, 208, 202, .09);
  border: 1px solid rgba(39, 208, 202, .22);
  border-radius: 50%;
}

.service-icon svg {
  width: 28px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.service-card p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
}

.service-card > a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  font-size: 19px;
  transition: color .2s, background .2s;
}

.service-card > a:hover {
  color: var(--ink);
  background: var(--teal-bright);
}

.why-section {
  background: var(--warm);
}

.home-news-section {
  background: #fff;
}

.home-news-heading {
  display: flex;
  margin-bottom: 55px;
  align-items: end;
  justify-content: space-between;
  gap: 55px;
}

.home-news-heading h2 {
  margin: 0;
  font-size: clamp(39px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.12;
}

.home-news-heading > div:last-child {
  max-width: 430px;
}

.home-news-heading > div:last-child > p {
  margin: 0;
  color: #718086;
}

.home-news-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.home-news-card,
.news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: box-shadow .3s, transform .3s;
}

.home-news-card:hover,
.news-card:hover {
  box-shadow: 0 20px 55px rgba(5, 35, 44, .12);
  transform: translateY(-5px);
}

.home-news-image,
.news-card-image {
  display: block;
  height: 225px;
  overflow: hidden;
}

.home-news-image img,
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}

.home-news-card:hover img,
.news-card:hover img {
  transform: scale(1.035);
}

.home-news-body,
.news-card-body {
  padding: 25px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #859398;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.news-meta span {
  color: #128e99;
}

.home-news-body h3,
.news-card-body h2 {
  margin: 13px 0 11px;
  font-size: 21px;
  letter-spacing: -.025em;
  line-height: 1.35;
}

.home-news-body p,
.news-card-body p {
  margin: 0;
  color: #718086;
  font-size: 13px;
}

.news-read {
  display: inline-flex;
  margin-top: 20px;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
}

.news-read span {
  color: var(--teal);
  font-size: 17px;
}

.home-news-placeholder {
  grid-column: 1/-1;
  padding: 40px;
  color: #128e99;
  background: var(--mist);
  border: 1px solid #dceaea;
  font-weight: 800;
  text-align: center;
}

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

.why-copy {
  padding: 40px 0;
}

.why-copy > p:not(.section-kicker) {
  margin: 26px 0 0;
  color: #64757a;
}

.check-list {
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  gap: 23px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.check-list li > span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 13px;
}

.check-list li div {
  display: flex;
  flex-direction: column;
}

.check-list small {
  margin-top: 3px;
  color: #718086;
}

.why-visual {
  position: relative;
  min-height: 610px;
}

.why-visual > img {
  border-radius: 3px;
}

.quote-card {
  position: absolute;
  right: -40px;
  bottom: -35px;
  max-width: 400px;
  padding: 32px 38px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.quote-card span {
  color: var(--teal-bright);
  font-size: 45px;
  line-height: .5;
}

.quote-card p {
  margin: 15px 0 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.gallery-section {
  padding: 130px 0 0;
}

.gallery-heading > p {
  color: #718086;
}

.gallery-grid {
  display: grid;
  height: 730px;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
}

.gallery-grid img {
  transition: transform .7s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.contact-section {
  position: relative;
  padding: 140px 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(5, 27, 35, .97), rgba(5, 27, 35, .9)),
    url("assets/reception.webp") center/cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 95px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, .62);
}

.contact-details {
  display: grid;
  margin-top: 47px;
  gap: 25px;
}

.contact-details a {
  display: flex;
  align-items: center;
  gap: 17px;
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-bright);
  border: 1px solid rgba(39, 208, 202, .3);
  border-radius: 50%;
}

.contact-icon svg {
  width: 20px;
}

.contact-details a > span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-details strong {
  margin-top: 3px;
  font-size: 15px;
}

.contact-hub {
  padding: 42px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(18, 184, 187, .07), transparent 42%),
    var(--white);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

.contact-hub-top {
  margin-bottom: 27px;
}

.hub-label {
  margin: 0 0 10px;
  color: #168d98;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.contact-hub h3 {
  max-width: 430px;
  margin: 0;
  font-size: 30px;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.contact-hub-top > p:last-child {
  max-width: 510px;
  margin: 12px 0 0;
  color: #718086;
  font-size: 13px;
  line-height: 1.65;
}

.hub-call {
  display: grid;
  min-height: 104px;
  padding: 20px 22px;
  grid-template-columns: 54px 1fr 40px;
  align-items: center;
  gap: 17px;
  color: #032329;
  background: var(--teal-bright);
  border-radius: 5px;
  transition: color .25s, background .25s, transform .25s;
}

.hub-call:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-2px);
}

.hub-call-icon,
.hub-mini-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.hub-call-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, .38);
}

.hub-call-icon svg {
  width: 23px;
}

.hub-call > span:nth-child(2),
.hub-actions a > span:nth-child(2),
.hub-location > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-hub small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hub-call strong {
  font-size: 25px;
  letter-spacing: -.025em;
}

.hub-arrow {
  font-size: 24px;
  text-align: right;
}

.hub-actions {
  display: grid;
  margin-top: 12px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hub-actions a {
  display: grid;
  min-height: 96px;
  padding: 16px;
  grid-template-columns: 39px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 12px;
  background: #f3f7f7;
  border: 1px solid #e1e9e9;
  border-radius: 5px;
  transition: border-color .2s, transform .2s;
}

.hub-actions a:hover,
.hub-location:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.hub-mini-icon {
  width: 39px;
  height: 39px;
  color: #128e99;
  background: rgba(18, 184, 187, .1);
}

.hub-mini-icon svg {
  width: 18px;
}

.hub-actions strong,
.hub-location strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hub-actions a > span:last-child {
  color: var(--teal);
}

.hub-location {
  display: grid;
  min-height: 80px;
  margin-top: 12px;
  padding: 15px 17px;
  grid-template-columns: 39px 1fr auto;
  align-items: center;
  gap: 13px;
  border: 1px solid #e1e9e9;
  border-radius: 5px;
  transition: border-color .2s, transform .2s;
}

.hub-map-link {
  color: #128e99;
  font-size: 11px;
  font-weight: 800;
}

.hub-map-link b {
  margin-left: 5px;
  font-size: 16px;
}

.hub-note {
  display: flex;
  margin-top: 21px;
  padding-top: 20px;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #e3eaea;
}

.hub-note .pulse {
  flex: 0 0 auto;
}

.hub-note p {
  margin: 0;
  color: #718086;
  font-size: 11px;
  line-height: 1.55;
}

.hub-note strong {
  color: var(--ink);
  font-size: 12px;
}

.map-wrap {
  height: 390px;
  filter: saturate(.45) contrast(1.07);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  color: rgba(255, 255, 255, .68);
  background: #030e13;
}

.footer-main {
  display: grid;
  padding: 78px 0 58px;
  grid-template-columns: 1.8fr .7fr 1fr;
  gap: 70px;
}

.footer-brand img {
  width: 190px;
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  font-size: 13px;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
}

.footer-main h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-main a:hover {
  color: var(--teal-bright);
}

.footer-bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 11px;
}

.floating-call {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: none;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--ink);
  background: var(--teal-bright);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
}

.floating-call svg {
  width: 23px;
}

/* News listing and article pages */
.news-page,
.article-page {
  background: #f7f9f8;
}

.news-header {
  position: relative;
  z-index: 5;
  color: #fff;
  background: var(--ink-deep);
}

.news-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.news-nav .active {
  color: var(--teal-bright);
}

.news-hero,
.article-hero {
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(39,208,202,.16), transparent 30%),
    var(--ink);
}

.news-hero {
  padding: 105px 0 115px;
}

.news-hero h1 {
  margin: 0;
  font-size: clamp(55px, 7vw, 92px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .98;
}

.news-hero h1 em {
  color: var(--teal-bright);
  font-style: normal;
  font-weight: 800;
}

.news-hero > .container > p:last-child {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 17px;
}

.news-list-section {
  padding: 90px 0 120px;
}

.news-card-body h2 {
  font-size: 23px;
}

.news-empty {
  padding: 80px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}

.article-hero {
  padding: 85px 0 150px;
}

.article-heading {
  max-width: 900px;
}

.article-back {
  display: inline-block;
  margin-bottom: 55px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  font-weight: 700;
}

.article-heading h1 {
  margin: 18px 0 22px;
  font-size: clamp(43px, 5vw, 70px);
  letter-spacing: -.05em;
  line-height: 1.1;
}

.article-heading > p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 18px;
}

.article-cover {
  width: min(1180px, calc(100% - 48px));
  height: 540px;
  margin: -90px auto 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  padding: 90px 0 120px;
  grid-template-columns: minmax(0, 760px) 280px;
  justify-content: space-between;
  gap: 70px;
}

.article-content {
  color: #324a51;
  font-size: 17px;
  line-height: 1.9;
}

.article-content p {
  margin: 0 0 28px;
}

.article-layout aside {
  align-self: start;
  padding: 28px;
  color: #fff;
  background: var(--ink);
}

.article-layout aside p {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  text-transform: uppercase;
}

.article-layout aside h2 {
  margin: 7px 0 18px;
}

.article-layout aside a {
  color: var(--teal-bright);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

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

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

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.nav-cta) {
    display: none;
  }

  .office-grid,
  .why-grid {
    gap: 60px;
  }

  .office-images {
    min-height: 520px;
  }

  .image-main {
    height: 455px;
  }

  .contact-grid {
    gap: 55px;
  }

  .quote-card {
    right: -20px;
  }
}

@media (max-width: 780px) {
  :root {
    --container: min(100% - 34px, 620px);
  }

  html {
    scroll-padding-top: 75px;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand img {
    width: 143px;
    height: 52px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    width: 43px;
    height: 43px;
    padding: 11px 9px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform .25s, opacity .25s;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    height: 100vh;
    height: 100dvh;
    padding: 110px 28px 50px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    visibility: hidden;
    background: var(--ink-deep);
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity .25s, transform .25s, visibility .25s;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .main-nav > a:not(.nav-cta) {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 22px;
  }

  .nav-cta {
    margin-top: 20px;
    justify-content: center;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media img {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 20, 27, .94), rgba(3, 20, 27, .55)),
      linear-gradient(0deg, rgba(3, 20, 27, .78), transparent 60%);
  }

  .hero-content {
    padding-top: 150px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-copy {
    margin: 24px 0 30px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta-grid {
    min-height: 82px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-trust {
    display: none !important;
  }

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

  .trust-grid > div {
    min-height: 85px;
    padding: 0 15px;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:first-child {
    padding-left: 15px;
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .section {
    padding: 90px 0;
  }

  .office-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .office-images {
    min-height: 480px;
  }

  .image-main {
    width: 83%;
    height: 405px;
  }

  .image-float {
    width: 49%;
    height: 210px;
  }

  .experience-badge {
    right: 3%;
    top: 28px;
    width: 135px;
    height: 135px;
    padding: 21px;
  }

  .office-copy h2,
  .section-heading h2,
  .why-copy h2,
  .gallery-heading h2,
  .contact-copy h2 {
    font-size: 38px;
  }

  .section-heading,
  .gallery-heading,
  .home-news-heading {
    margin-bottom: 45px;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .service-card {
    padding: 28px 0;
    grid-template-columns: 48px 1fr 38px;
    gap: 16px;
  }

  .service-number {
    display: none;
  }

  .service-icon {
    width: 48px;
    height: 48px;
  }

  .service-icon svg {
    width: 22px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 12px;
    line-height: 1.55;
  }

  .service-card > a {
    width: 36px;
    height: 36px;
  }

  .why-grid {
    gap: 40px;
  }

  .why-copy {
    padding: 0;
  }

  .why-visual {
    min-height: 490px;
    margin-bottom: 45px;
  }

  .quote-card {
    right: -8px;
    bottom: -45px;
    max-width: 91%;
    padding: 26px;
  }

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

  .gallery-grid {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 200px 260px;
  }

  .gallery-tall {
    grid-column: span 2;
    grid-row: auto;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .contact-section {
    padding: 90px 0;
  }

  .contact-grid {
    gap: 55px;
  }

  .contact-hub {
    padding: 30px 22px;
  }

  .contact-hub h3 {
    font-size: 27px;
  }

  .hub-call strong {
    font-size: 21px;
    white-space: nowrap;
  }

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

  .hub-location {
    grid-template-columns: 39px 1fr;
  }

  .hub-map-link {
    display: none;
  }

  .map-wrap {
    height: 310px;
  }

  .footer-main {
    padding: 60px 0 45px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .footer-bottom p {
    margin: 0;
  }

  .floating-call {
    display: grid;
  }

  .home-news-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .home-news-heading h2 {
    font-size: 38px;
  }

  .news-nav a:not(.nav-cta):not(.active) {
    display: none;
  }

  .news-hero {
    padding: 75px 0 85px;
  }

  .news-hero h1 {
    font-size: 52px;
  }

  .news-list-section {
    padding: 60px 0 85px;
  }

  .article-hero {
    padding: 60px 0 110px;
  }

  .article-back {
    margin-bottom: 35px;
  }

  .article-heading h1 {
    font-size: 42px;
  }

  .article-cover {
    width: calc(100% - 24px);
    height: 300px;
    margin-top: -65px;
  }

  .article-layout {
    padding: 60px 0 85px;
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 400px) {
  .hero-meta-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta-grid > div:nth-child(2) {
    display: none;
  }

  .office-images {
    min-height: 435px;
  }

  .image-main {
    height: 365px;
  }

  .experience-badge {
    width: 118px;
    height: 118px;
    padding: 18px;
  }
}
