@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("../fonts/cairo-arabic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --navy: #082f4f;
  --navy-deep: #071f34;
  --ocean: #087eb5;
  --marine: #159dd1;
  --gold: #f2d21a;
  --ice: #eaf7fb;
  --ink: #102c3d;
  --white: #ffffff;
  --border: #dce5e9;
  --container: 1280px;
  --page-gutter: 20px;
  --header-height: 72px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-xl: 14px;
  --shadow-header: 0 12px 32px rgb(8 47 79 / 0.07);
  --ease-sea: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

img {
  height: auto;
}

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

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

:focus-visible {
  outline: 2px solid var(--ocean);
  outline-offset: 3px;
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

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

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  position: fixed !important;
  z-index: 10000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  margin: 0;
  clip: auto;
  overflow: visible;
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 28px rgb(0 0 0 / 0.16);
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  border: 0;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    color 300ms ease,
    background-color 300ms ease,
    border-color 300ms ease,
    transform 300ms ease;
}

.button .icon {
  flex: 0 0 auto;
  transition: transform 300ms ease;
}

.button:hover .icon--arrow-right {
  transform: translateX(4px);
}

.button--light {
  background: var(--white);
  color: var(--navy);
}

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

.button--gold {
  background: var(--gold);
  color: var(--navy-deep);
}

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

.button--outline-light {
  color: var(--white);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.45);
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
  background: rgb(255 255 255 / 0.1);
}

/* Header and navigation */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  transition:
    color 500ms ease,
    background-color 500ms ease,
    box-shadow 500ms ease,
    border-color 500ms ease;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: transparent;
  transition: background-color 500ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open,
.body-not-front .site-header {
  color: var(--navy);
  background: rgb(255 255 255 / 0.96);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled::after,
.site-header.is-menu-open::after,
.body-not-front .site-header::after {
  background: rgb(8 47 79 / 0.1);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand__mark {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: none;
}

.brand__copy {
  display: grid;
  gap: 5px;
}

.brand__name {
  max-width: 176px;
  overflow: hidden;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.21em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand__tagline {
  color: currentColor;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
  opacity: 0.72;
  text-transform: uppercase;
}

.brand--custom .custom-logo-link {
  display: block;
}

.brand--custom img {
  display: block;
  width: auto;
  max-width: 210px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 500ms ease;
}

.brand--custom.brand--with-text img {
  width: 48px;
  max-width: 48px;
}

.site-header.is-scrolled .brand__mark,
.site-header.is-menu-open .brand__mark,
.site-header.is-scrolled .brand--custom img,
.site-header.is-menu-open .brand--custom img,
.body-not-front .brand__mark,
.body-not-front .brand--custom img {
  filter: none;
}

.site-nav--desktop {
  display: none;
  margin-left: auto;
}

.site-nav__menu,
.mobile-navigation__menu,
.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 34px);
}

.site-nav__menu > li {
  position: relative;
}

.site-nav__menu a {
  position: relative;
  display: inline-flex;
  padding-block: 12px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav__menu > li > a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 300ms ease;
}

.site-nav__menu > li > a:hover::after,
.site-nav__menu > li.current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-nav__menu .sub-menu {
  position: absolute;
  top: calc(100% - 3px);
  left: -18px;
  display: none;
  min-width: 210px;
  padding: 10px 18px;
  margin: 0;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgb(8 47 79 / 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 55px rgb(8 47 79 / 0.15);
  list-style: none;
}

.site-nav__menu li:hover > .sub-menu,
.site-nav__menu li:focus-within > .sub-menu {
  display: block;
}

.language-switcher {
  display: inline-flex;
  min-width: 52px;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding-inline: 12px;
  color: currentColor;
  background: rgb(255 255 255 / 0.07);
  border: 1px solid rgb(255 255 255 / 0.34);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  transition:
    color 250ms ease,
    background-color 250ms ease,
    border-color 250ms ease;
}

.language-switcher:lang(ar) {
  font-family: "Cairo", Tahoma, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

.language-switcher:lang(en) {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}

.language-switcher:hover,
.language-switcher:focus-visible {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.language-switcher--header {
  margin-left: auto;
}

.site-header.is-scrolled .language-switcher,
.site-header.is-menu-open .language-switcher,
.body-not-front .language-switcher {
  background: transparent;
  border-color: rgb(8 47 79 / 0.26);
}

.site-header.is-scrolled .language-switcher:hover,
.site-header.is-scrolled .language-switcher:focus-visible,
.site-header.is-menu-open .language-switcher:hover,
.site-header.is-menu-open .language-switcher:focus-visible,
.body-not-front .language-switcher:hover,
.body-not-front .language-switcher:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
}

.button--header {
  display: none;
  min-height: 42px;
  margin-left: 0;
  padding-inline: 20px;
  color: currentColor;
  background: rgb(255 255 255 / 0.08);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.34);
}

.button--header:hover,
.button--header:focus-visible {
  background: rgb(255 255 255 / 0.16);
}

.site-header.is-scrolled .button--header,
.site-header.is-menu-open .button--header,
.body-not-front .button--header {
  color: var(--white);
  background: var(--navy);
  box-shadow: none;
}

.site-header.is-scrolled .button--header:hover,
.site-header.is-menu-open .button--header:hover,
.body-not-front .button--header:hover {
  background: var(--ocean);
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  margin-left: 0;
  cursor: pointer;
  color: currentColor;
  background: transparent;
  border: 0;
  place-content: center;
  gap: 5px;
}

.menu-toggle__line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition:
    transform 300ms ease,
    opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-of-type(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-of-type(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-of-type(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-navigation {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  color: var(--navy);
  background: rgb(255 255 255 / 0.99);
  border-top: 1px solid rgb(8 47 79 / 0.08);
  box-shadow: 0 22px 36px rgb(8 47 79 / 0.1);
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 300ms ease,
    transform 300ms ease;
}

.mobile-navigation.is-open {
  opacity: 1;
  transform: none;
}

html:not(.has-js) .site-header {
  color: var(--navy);
  background: rgb(255 255 255 / 0.96);
  box-shadow: var(--shadow-header);
}

html:not(.has-js) .brand__mark,
html:not(.has-js) .brand--custom img {
  filter: none;
}

html:not(.has-js) .menu-toggle {
  display: none;
}

html:not(.has-js) .mobile-navigation[hidden] {
  display: block;
  opacity: 1;
  transform: none;
}

.mobile-navigation nav {
  padding-top: 12px;
  padding-bottom: 22px;
}

.mobile-navigation__menu li,
.mobile-navigation .site-nav__menu li {
  border-bottom: 1px solid rgb(8 47 79 / 0.1);
}

.mobile-navigation__menu a,
.mobile-navigation .site-nav__menu a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 700;
}

.mobile-navigation .site-nav__menu {
  display: block;
}

.mobile-navigation .site-nav__menu a::after {
  display: none;
}

.button--nav-mobile {
  width: 100%;
  margin-top: 18px;
  color: var(--white);
  background: var(--navy);
}

/* Hero */
.hero-section {
  position: relative;
  display: flex;
  min-height: 88vh;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-section__media,
.hero-section__overlay {
  position: absolute;
  inset: 0;
}

.hero-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: seafront-drift 24s ease-in-out infinite alternate;
}

.hero-section__overlay {
  background:
    linear-gradient(to top, rgb(7 31 52 / 0.96) 0%, rgb(8 47 79 / 0.53) 49%, rgb(8 47 79 / 0.23) 100%),
    rgb(8 47 79 / 0.58);
}

.hero-section__inner {
  position: relative;
  width: 100%;
  padding-top: 160px;
  padding-bottom: 64px;
}

.hero-section__content {
  max-width: 768px;
}

.eyebrow {
  margin-bottom: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--gold);
}

.eyebrow--ocean {
  color: var(--ocean);
}

.eyebrow--line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow > span {
  width: 40px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  opacity: 0.72;
}

.hero-section__title {
  margin: 24px 0 0;
  color: var(--white);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.hero-section__title span {
  display: block;
  color: rgb(255 255 255 / 0.85);
}

.hero-section__text {
  max-width: 576px;
  margin: 28px 0 0;
  color: rgb(255 255 255 / 0.76);
  font-size: 15px;
  line-height: 1.75;
}

.hero-section__actions,
.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-section__location {
  margin: 42px 0 0;
  color: rgb(255 255 255 / 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.7;
  text-transform: uppercase;
}

@keyframes seafront-drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.12) translate3d(0, -1.5%, 0);
  }
}

/* Shared sections */
.section {
  position: relative;
  padding-block: 56px;
}

.section--ice {
  background: #f4fbfd;
  background: color-mix(in srgb, var(--ice) 70%, var(--white));
}

.section--navy {
  color: var(--white);
  background: var(--navy);
}

.section-title {
  margin: 20px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 7vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.section-title--light {
  color: var(--white);
}

.section-title--measure {
  max-width: 680px;
}

.section-intro {
  margin: 0;
  color: rgb(16 44 61 / 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.section-heading-grid {
  display: grid;
  gap: 26px;
}

/* About */
.section--about {
  overflow: hidden;
}

.about-grid {
  display: grid;
  align-items: center;
  gap: 46px;
}

.about-grid__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.about-grid__copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgb(16 44 61 / 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.about-grid__copy > p + p:not(.eyebrow) {
  margin-top: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  margin-top: 30px;
  color: var(--navy);
  border-bottom: 1px solid rgb(8 47 79 / 0.28);
  font-size: 14px;
  font-weight: 800;
  transition:
    color 300ms ease,
    border-color 300ms ease;
}

.text-link .icon {
  transition: transform 300ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ocean);
  border-color: var(--ocean);
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.hook-arc {
  position: absolute;
  top: 64px;
  right: -96px;
  display: none;
  width: 380px;
  height: 380px;
  color: rgb(8 126 181 / 0.25);
}

.wave-rule {
  height: 60px;
}

.wave-rule svg {
  width: 100%;
  height: 60px;
  overflow: visible;
  stroke: rgb(8 126 181 / 0.35);
  stroke-width: 1;
}

.wave-rule path + path {
  stroke-width: 0.6;
}

/* Editorial service rows */
.editorial-list {
  margin-top: 48px;
  border-top: 1px solid rgb(8 47 79 / 0.13);
}

.service-row {
  display: grid;
  gap: 15px;
  padding: 27px 0;
  border-bottom: 1px solid rgb(8 47 79 / 0.13);
  transition: background-color 300ms ease;
}

.service-row__title {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.service-row__number {
  flex: 0 0 auto;
  color: rgb(8 126 181 / 0.72);
  font-size: 14px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.service-row__title h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.service-row__rule {
  display: none;
  width: 32px;
  height: 1px;
  flex: 0 0 auto;
  background: rgb(8 47 79 / 0.22);
  transform: translateY(-4px);
  transition:
    width 300ms ease,
    background-color 300ms ease;
}

.service-row > p {
  margin: 0;
  color: rgb(16 44 61 / 0.7);
  font-size: 15px;
  line-height: 1.8;
}

.service-row__icon {
  display: none;
  color: rgb(8 47 79 / 0.25);
  transition: color 300ms ease;
}

/* Catch */
.catch-grid {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.catch-card,
.catch-card > a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.catch-card img {
  width: 100%;
  height: 288px;
  object-fit: cover;
  transition: transform 700ms ease-out;
}

.catch-card__overlay {
  position: absolute;
  inset: 0;
  background: rgb(8 47 79 / 0.45);
  transition: background-color 500ms ease;
}

.catch-card__label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 23px;
  color: var(--white);
}

.catch-card__label strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.catch-card__label > span {
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.catch-card a:hover img,
.catch-card a:focus-visible img {
  transform: scale(1.05);
}

.catch-card a:hover .catch-card__overlay,
.catch-card a:focus-visible .catch-card__overlay {
  background: rgb(8 47 79 / 0.65);
}

.catch-card a:hover .catch-card__label > span,
.catch-card a:focus-visible .catch-card__label > span {
  opacity: 1;
  transform: none;
}

.catch-card a:focus-visible {
  outline-color: var(--gold);
  outline-offset: -4px;
}

/* Quality */
.quality-heading {
  display: grid;
  gap: 28px;
}

.quality-heading > p {
  margin: 0;
  color: rgb(255 255 255 / 0.71);
  font-size: 15px;
  line-height: 1.8;
}

.commitment-grid {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid rgb(255 255 255 / 0.15);
}

.commitment-card {
  padding: 30px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.15);
}

.commitment-card > span {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.commitment-card h3 {
  margin: 22px 0 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
}

.commitment-card p {
  margin: 12px 0 0;
  color: rgb(255 255 255 / 0.66);
  font-size: 14px;
  line-height: 1.75;
}

/* Cinematic banner */
.visual-banner {
  position: relative;
  min-height: 380px;
  height: 60vh;
  overflow: hidden;
  background: var(--navy-deep);
}

.visual-banner > img,
.visual-banner__overlay,
.visual-banner__inner {
  position: absolute;
  inset: 0;
}

.visual-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-banner__overlay {
  background: rgb(7 31 52 / 0.55);
}

.visual-banner__inner {
  display: flex;
  align-items: center;
}

.visual-banner h2 {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 7vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.visual-banner h2 span {
  display: block;
  color: rgb(255 255 255 / 0.8);
}

/* Why us */
.strength-row {
  display: grid;
  align-items: baseline;
  gap: 10px;
  padding: 25px 0;
  border-bottom: 1px solid rgb(8 47 79 / 0.13);
}

.strength-row > span {
  color: rgb(8 47 79 / 0.15);
  font-size: 30px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1;
}

.strength-row h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.strength-row p {
  margin: 0;
  color: rgb(16 44 61 / 0.7);
  font-size: 15px;
  line-height: 1.8;
}

/* Location */
.location-grid {
  display: grid;
  align-items: center;
  gap: 42px;
}

.location-grid__copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgb(16 44 61 / 0.7);
  font-size: 15px;
  line-height: 1.8;
}

.location-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--navy);
  font-size: 14px;
}

.location-label .icon {
  color: var(--ocean);
}

.location-grid__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

/* Contact CTA */
.contact-cta {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--navy);
}

.contact-cta__image,
.contact-cta__overlay {
  position: absolute;
  inset: 0;
}

.contact-cta__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-cta__overlay {
  background: rgb(8 47 79 / 0.78);
}

.contact-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 680px;
  padding-block: 64px;
}

.contact-cta__layout {
  width: 100%;
}

.contact-cta__copy {
  max-width: 680px;
}

.contact-cta h2 {
  margin: 20px 0 0;
  color: var(--white);
  font-size: clamp(32px, 7vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.contact-cta__copy > p {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 0.76);
  font-size: 15px;
  line-height: 1.75;
}

.contact-cta__details {
  display: grid;
  max-width: 900px;
  padding-top: 26px;
  margin: 42px 0 0;
  border-top: 1px solid rgb(255 255 255 / 0.2);
  font-style: normal;
}

.contact-detail {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.14);
}

.contact-detail__icon {
  display: inline-flex;
  padding-top: 2px;
  color: var(--gold);
}

.contact-detail__label {
  display: block;
  color: rgb(255 255 255 / 0.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail__value {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.contact-detail a + a {
  margin-top: 2px;
}

.contact-detail a {
  width: fit-content;
  transition: color 250ms ease;
}

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

/* Footer */
.site-footer {
  padding: 64px 0 0;
  color: rgb(255 255 255 / 0.68);
  background: var(--navy);
}

.site-footer__grid {
  display: grid;
  gap: 40px;
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand__mark,
.brand--footer.brand--custom img {
  filter: brightness(0) invert(1);
}

.brand--footer.brand--bundled .brand__mark {
  width: 140px;
  height: 140px;
  filter: none;
}

.site-footer__brand > p {
  max-width: 420px;
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.8;
}

.site-footer__column h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
  font-size: 14px;
}

.footer-links a {
  display: inline-block;
  transition: color 250ms ease;
}

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

.footer-links--contact li {
  overflow-wrap: anywhere;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 0;
  margin-top: 50px;
  border-top: 1px solid rgb(255 255 255 / 0.15);
  font-size: 12px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  color: rgb(255 255 255 / 0.8);
  font-weight: 700;
}

/* Reveal motion */
.has-js .js-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms var(--ease-sea) var(--reveal-delay, 0ms),
    transform 700ms var(--ease-sea) var(--reveal-delay, 0ms);
}

.has-js .js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* WordPress content templates */
.inner-page-header {
  padding: calc(var(--header-height) + 72px) 0 64px;
  color: var(--white);
  background: var(--navy);
}

.inner-page-header h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(36px, 7vw, 58px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.content-area {
  padding-block: 64px;
}

.content-layout {
  display: grid;
  gap: 48px;
}

.entry-card {
  padding-bottom: 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--border);
}

.entry-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.entry-title a:hover {
  color: var(--ocean);
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 12px;
  color: rgb(16 44 61 / 0.62);
  font-size: 13px;
}

.entry-content {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.85;
}

.entry-content > * {
  max-width: 820px;
}

.entry-content > .alignwide {
  max-width: 1100px;
}

.entry-content > .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

.entry-content a:not(.wp-element-button) {
  color: var(--ocean);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content img {
  border-radius: var(--radius-md);
}

.entry-content blockquote {
  padding-left: 24px;
  margin: 34px 0;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  font-size: 1.15em;
}

.post-thumbnail {
  margin: 28px 0;
}

.post-thumbnail img {
  width: 100%;
  max-height: 620px;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.widget {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.widget-title {
  color: var(--navy);
  font-size: 18px;
}

.navigation.pagination,
.post-navigation {
  margin-top: 42px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.page-numbers.current,
.page-numbers:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.search-form {
  display: flex;
  max-width: 560px;
  gap: 8px;
}

.search-field,
.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.search-submit,
.form-submit .submit {
  min-height: 48px;
  padding: 10px 20px;
  cursor: pointer;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.comments-area {
  max-width: 820px;
  padding-top: 36px;
  margin-top: 52px;
  border-top: 1px solid var(--border);
}

.comment-list {
  padding: 0;
  list-style: none;
}

.comment-list .children {
  list-style: none;
}

/* Responsive */
@media (min-width: 540px) {
  .button--header {
    display: inline-flex;
  }

  .menu-toggle {
    margin-left: 0;
  }

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

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

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

@media (min-width: 640px) {
  .hero-section__title {
    font-size: 48px;
  }

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

  .contact-detail {
    padding: 4px 24px;
    border-bottom: 0;
  }

  .contact-detail + .contact-detail {
    border-inline-start: 1px solid rgb(255 255 255 / 0.16);
  }

  .contact-detail:first-child {
    padding-inline-start: 0;
  }

  .contact-detail:last-child {
    padding-inline-end: 0;
  }
}

@media (min-width: 768px) {
  :root {
    --page-gutter: 40px;
    --header-height: 80px;
  }

  .section {
    padding-block: 84px;
  }

  .hero-section__inner {
    padding-bottom: 96px;
  }

  .hero-section__text {
    font-size: 16px;
  }

  .hero-section__actions,
  .contact-cta__actions {
    margin-top: 38px;
  }

  .hero-section__location {
    margin-top: 48px;
    font-size: 11px;
    letter-spacing: 0.28em;
  }

  .section-heading-grid {
    gap: 36px;
  }

  .editorial-list {
    margin-top: 54px;
  }

  .service-row {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: baseline;
    gap: 28px;
    padding: 34px 16px;
  }

  .service-row:hover {
    background: var(--white);
  }

  .service-row__title {
    grid-column: span 5;
  }

  .service-row__title h3 {
    font-size: 23px;
  }

  .service-row__rule {
    display: block;
  }

  .service-row > p {
    grid-column: span 6;
  }

  .service-row__icon {
    display: flex;
    grid-column: span 1;
    justify-content: flex-end;
  }

  .service-row:hover .service-row__rule {
    width: 48px;
    background: var(--gold);
  }

  .service-row:hover .service-row__icon {
    color: var(--ocean);
  }

  .catch-grid {
    gap: 20px;
    margin-top: 48px;
  }

  .catch-card__label strong {
    font-size: 20px;
  }

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

  .commitment-card {
    padding: 34px 26px;
  }

  .commitment-card:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid rgb(255 255 255 / 0.15);
  }

  .strength-row {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 28px;
    padding: 32px 0;
  }

  .strength-row > span {
    grid-column: span 2;
    font-size: 48px;
  }

  .strength-row h3 {
    grid-column: span 4;
    font-size: 20px;
  }

  .strength-row p {
    grid-column: span 6;
  }

  .contact-cta,
  .contact-cta__inner {
    min-height: 620px;
  }

  .site-footer {
    padding-top: 80px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
  }

  .site-footer__brand {
    grid-column: span 5;
  }

  .site-footer__column:nth-of-type(2) {
    grid-column: span 2;
  }

  .site-footer__column:nth-of-type(3) {
    grid-column: span 3;
  }

  .site-footer__column:nth-of-type(4) {
    grid-column: span 2;
  }

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 64px;
  }

  .inner-page-header {
    padding-top: calc(var(--header-height) + 96px);
    padding-bottom: 82px;
  }

  .content-area {
    padding-block: 84px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-block: 124px;
  }

  .hero-section__inner {
    padding-bottom: 112px;
  }

  .hero-section__title {
    font-size: 66px;
  }

  .about-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 80px;
  }

  .about-grid__media,
  .about-grid__copy {
    grid-column: span 6;
  }

  .about-grid__copy {
    padding-left: 16px;
  }

  .hook-arc {
    display: block;
  }

  .section-heading-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: end;
  }

  .section-heading-grid > :first-child {
    grid-column: span 7;
  }

  .section-heading-grid > :last-child {
    grid-column: span 5;
  }

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

  .catch-card--wide {
    grid-column: span 7;
  }

  .catch-card--narrow {
    grid-column: span 5;
  }

  .catch-card img {
    height: 416px;
  }

  .quality-heading {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
  }

  .quality-heading > :first-child {
    grid-column: span 5;
  }

  .quality-heading > :last-child {
    grid-column: 7 / span 6;
  }

  .commitment-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 56px;
  }

  .commitment-card {
    padding: 36px 28px;
    border-right: 1px solid rgb(255 255 255 / 0.15);
  }

  .commitment-card:first-child {
    padding-left: 0;
  }

  .commitment-card:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .location-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 64px;
  }

  .location-grid__copy {
    grid-column: span 5;
  }

  .location-grid__media {
    grid-column: span 7;
  }

  .content-layout.has-sidebar {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 72px;
  }
}

@media (min-width: 1180px) {
  .site-nav--desktop {
    display: block;
  }

  .button--header,
  .language-switcher--header {
    margin-left: 0;
  }

  .menu-toggle,
  .mobile-navigation {
    display: none !important;
  }
}

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

@media (max-width: 539px) {
  .site-header__inner {
    gap: 12px;
  }

  .brand__name {
    max-width: 105px;
    font-size: 12px;
  }

  .brand__tagline {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand--header .brand__mark {
    width: 58px;
    height: 58px;
  }

  .brand--custom:not(.brand--with-text) img {
    max-width: 100px;
    height: 40px;
  }

  .language-switcher {
    min-width: 48px;
    padding-inline: 8px;
  }
}

.admin-bar .mobile-navigation {
  max-height: calc(100vh - var(--header-height) - 32px);
}

.admin-bar section[id] {
  scroll-margin-top: calc(var(--header-height) + 44px);
}

@media (max-width: 782px) {
  .admin-bar .mobile-navigation {
    max-height: calc(100vh - var(--header-height) - 46px);
  }

  .admin-bar section[id] {
    scroll-margin-top: calc(var(--header-height) + 58px);
  }
}

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

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

  .has-js .js-reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero-section__actions,
  .contact-cta {
    display: none !important;
  }

  .hero-section {
    min-height: auto;
    color: #000;
    background: #fff;
  }

  .hero-section__media,
  .hero-section__overlay {
    display: none;
  }

  .hero-section__title,
  .hero-section__title span,
  .hero-section__text,
  .hero-section__location {
    color: #000;
  }
}
