:root {
  --trident-navy: #071f4b;
  --trident-blue: #123f87;
  --trident-paper: #fafaf7;
  --trident-paper-deep: #f1f2ec;
  --trident-ink: #152033;
  --trident-muted: #5d6673;
  --trident-line: rgba(7, 31, 75, 0.18);
  --trident-sans: "Hanken Grotesk", system-ui, sans-serif;
  --trident-serif: "Cormorant Garamond", Georgia, serif;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.trident-main {
  max-width: 1512px;
  margin: 0 auto;
}
.trident-main--hero {
  max-width: none;
  background: var(--trident-paper);
}

.trident-not-found {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--trident-navy);
  font-family: var(--trident-sans);
}
.trident-not-found__image,
.trident-not-found__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.trident-not-found__image {
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}
.trident-not-found__overlay {
  background: linear-gradient(
    to top,
    rgba(4, 16, 40, 0.9),
    rgba(4, 16, 40, 0.7)
  );
}
.trident-not-found__wrap {
  width: min(100% - 96px, 1320px);
  margin: 0 auto;
}
.trident-not-found__content {
  position: relative;
  z-index: 1;
  padding: 0 0 24px;
  text-align: center;
}
.trident-not-found__code {
  margin: 0;
  color: #fff;
  font-family: var(--trident-serif);
  font-size: clamp(110px, 20vw, 300px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.03em;
}
.trident-not-found__brand {
  display: inline-block;
  width: 130px;
  height: 44px;
  margin: 10px 0 28px;
  opacity: 0.85;
}
.trident-not-found__brand span {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/static/img/trident-wordmark.png") no-repeat center / contain;
}
.trident-not-found h1 {
  max-width: 760px;
  margin: 0 auto 18px;
  font-family: var(--trident-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.trident-not-found__copy {
  max-width: 520px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.65;
}
.trident-not-found__actions,
.trident-not-found__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.trident-not-found__actions {
  gap: 14px;
}
.trident-not-found__actions .trident-button {
  min-height: 54px;
  padding: 0 30px;
  letter-spacing: 0.04em;
}
.trident-not-found__nav {
  gap: 16px 30px;
  margin-top: 56px;
}
.trident-not-found__nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease;
}
.trident-not-found__nav a:hover,
.trident-not-found__nav a:focus-visible {
  color: #fff;
}

.trident-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: #fff;
  background: rgba(7, 31, 75, 0.96);
  backdrop-filter: blur(14px);
  font-family: var(--trident-sans);
  transition:
    background 500ms cubic-bezier(0.22, 0.61, 0.36, 1),
    color 300ms ease,
    box-shadow 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trident-header--hero-overlay {
  position: fixed;
  right: 0;
  left: 0;
  background: transparent;
  backdrop-filter: none;
}
.trident-header--solid,
.trident-header--hero-overlay.trident-header--scrolled {
  color: var(--trident-ink);
  background: rgba(250, 250, 247, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(20, 24, 31, 0.07);
}

.trident-footer__main,
.trident-footer__bottom {
  width: min(100% - 96px, 1224px);
  margin: 0 auto;
}

.trident-header__inner {
  width: min(100% - 96px, 1640px);
  margin: 0 auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trident-header__brand {
  display: block;
  width: 160px;
  height: 94px;
}
.trident-header__brand-mark {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/static/img/trident-wordmark.png") no-repeat center / contain;
}
.trident-header--solid .trident-header__brand-mark,
.trident-header--hero-overlay.trident-header--scrolled
  .trident-header__brand-mark {
  background-image: none;
  background-color: var(--trident-ink);
  -webkit-mask: url("/static/img/trident-wordmark.png") no-repeat center /
    contain;
  mask: url("/static/img/trident-wordmark.png") no-repeat center / contain;
}

.trident-header__nav,
.trident-language-links,
.trident-header__tools {
  display: flex;
  align-items: center;
}

.trident-header__nav {
  gap: 38px;
}
.trident-header__nav a,
.trident-language-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 300ms ease;
}
.trident-header__nav a {
  position: relative;
  padding: 6px 0;
}
.trident-header__nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  content: "";
  background: currentColor;
  transition: width 400ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trident-header__nav a:hover::after,
.trident-header__nav a:focus-visible::after,
.trident-header__nav a.is-current::after {
  width: 100%;
}
.trident-header__nav a:hover,
.trident-header__nav a:focus-visible,
.trident-language-link:hover,
.trident-language-link:focus-visible,
.trident-language-link.is-current {
  color: #fff;
}

.trident-header__tools {
  justify-content: flex-end;
  gap: 22px;
}
.trident-language-links {
  gap: 2px;
}
.trident-language-link {
  padding: 4px 7px;
  opacity: 0.5;
}
.trident-language-link.is-current {
  opacity: 1;
}
.trident-header__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  transition:
    background 300ms ease,
    color 300ms ease,
    box-shadow 300ms ease;
}
.trident-header__contact:hover,
.trident-header__contact:focus-visible {
  color: var(--trident-navy);
  background: #fff;
}
.trident-header--solid .trident-header__nav a,
.trident-header--solid .trident-language-link,
.trident-header--hero-overlay.trident-header--scrolled .trident-header__nav a,
.trident-header--hero-overlay.trident-header--scrolled .trident-language-link {
  color: var(--trident-ink);
}
.trident-header--solid .trident-header__nav a:hover,
.trident-header--solid .trident-header__nav a:focus-visible,
.trident-header--solid .trident-language-link:hover,
.trident-header--solid .trident-language-link:focus-visible,
.trident-header--solid .trident-language-link.is-current,
.trident-header--hero-overlay.trident-header--scrolled
  .trident-header__nav
  a:hover,
.trident-header--hero-overlay.trident-header--scrolled
  .trident-header__nav
  a:focus-visible,
.trident-header--hero-overlay.trident-header--scrolled
  .trident-language-link:hover,
.trident-header--hero-overlay.trident-header--scrolled
  .trident-language-link:focus-visible,
.trident-header--hero-overlay.trident-header--scrolled
  .trident-language-link.is-current {
  color: var(--trident-ink);
}
.trident-header--solid .trident-header__contact,
.trident-header--hero-overlay.trident-header--scrolled
  .trident-header__contact {
  color: var(--trident-navy);
  box-shadow: inset 0 0 0 1px var(--trident-line);
}
.trident-header--solid .trident-header__contact:hover,
.trident-header--solid .trident-header__contact:focus-visible,
.trident-header--hero-overlay.trident-header--scrolled
  .trident-header__contact:hover,
.trident-header--hero-overlay.trident-header--scrolled
  .trident-header__contact:focus-visible {
  color: #fff;
  background: var(--trident-navy);
}
.trident-menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.trident-header--solid .trident-menu-toggle,
.trident-header--hero-overlay.trident-header--scrolled .trident-menu-toggle {
  color: var(--trident-ink);
  border-color: var(--trident-line);
}
.trident-menu-toggle span:not(.trident-sr-only) {
  display: block;
  width: 16px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
}
.trident-mobile-menu {
  display: none;
}
.trident-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.trident-home {
  overflow: hidden;
  color: var(--trident-ink);
  font-family: var(--trident-sans);
}
.trident-home h1,
.trident-home h2,
.trident-home h3,
.trident-footer h2 {
  margin: 0;
  font-family: var(--trident-serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}
.trident-home p {
  margin: 0;
}
.trident-about-page,
.trident-about-page__story,
.trident-about-page__image-band,
.trident-about-page__confidence,
.trident-about-page__values,
.trident-about-page__founder,
.trident-about-page__why {
  --trident-navy: #062d6f;
  --trident-paper: #fafaf7;
  --trident-paper-deep: #f1f0ea;
  --trident-ink: #14181f;
  --trident-muted: #6b6f76;
  --trident-line: rgba(20, 24, 31, 0.12);
  color: var(--trident-ink);
  font-family: var(--trident-sans);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.65;
}
.trident-about-page__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.trident-about-page__hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 78vh;
  overflow: hidden;
  color: #fff;
  background: var(--trident-navy);
}
.trident-about-page__hero-image,
.trident-about-page__hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.trident-about-page__hero-image {
  object-fit: cover;
  object-position: center;
}
.trident-about-page__hero-overlay {
  background: linear-gradient(
    to top,
    rgba(4, 16, 40, 0.82),
    rgba(4, 16, 40, 0.2)
  );
}
.trident-about-page__hero-content {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 70px;
}
.trident-about-page__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--trident-navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.trident-about-page__eyebrow::before {
  display: inline-block;
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.4;
}
.trident-about-page__eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}
.trident-about-page__hero h1 {
  max-width: 1000px;
  margin: 24px 0 0;
  padding-bottom: 0.04em;
  font-family: var(--trident-serif);
  font-size: clamp(44px, 6.6vw, 108px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.trident-about-page__hero h1 em {
  font-weight: 400;
}
.trident-about-page__story {
  padding: 140px 0 56px;
  background: var(--trident-paper);
}
.trident-about-page__story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.trident-about-page__story-grid .trident-about-page__eyebrow {
  color: var(--trident-ink);
  text-align: left;
}
.trident-about-page__story-copy {
  color: var(--trident-muted);
  font-size: 17px;
  line-height: 1.65;
}
.trident-about-page__story-copy p {
  margin: 0;
}
.trident-about-page__story-copy p + p {
  margin-top: 20px;
}
.trident-about-page__story-copy .trident-about-page__story-lead {
  margin-bottom: 34px;
  color: var(--trident-ink);
  font-family: var(--trident-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.trident-about-page__image-band {
  padding-bottom: 104px;
  background: var(--trident-paper);
}
.trident-about-page__image-band-wrap {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 48px;
}
.trident-about-page__image-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  height: 460px;
}
.trident-about-page__image-grid figure {
  margin: 0;
  overflow: hidden;
}
.trident-about-page__image-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trident-about-page__image-grid figure:hover img {
  transform: scale(1.045);
}
.trident-about-page__confidence {
  padding: 72px 0;
  color: #fff;
  background: #041e4a;
}
.trident-about-page__confidence-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.trident-about-page__confidence .trident-about-page__eyebrow {
  color: rgba(255, 255, 255, 0.65);
}
.trident-about-page__confidence-statement {
  margin: 0;
  color: #fff;
  font-family: var(--trident-serif);
  font-size: clamp(24px, 2.7vw, 38px);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: -0.01em;
}
.trident-about-page__confidence-statement em {
  color: #b8985a;
  font-weight: 400;
}
.trident-about-page__confidence-copy {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.65;
}
.trident-about-page__values {
  padding: 140px 0 64px;
  background: var(--trident-paper);
}
.trident-about-page__values > .trident-about-page__wrap > h2 {
  max-width: 720px;
  margin: 22px 0 56px;
  color: var(--trident-ink);
  font-family: var(--trident-serif);
  font-size: clamp(34px, 4.6vw, 66px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.trident-about-page__values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--trident-line);
}
.trident-about-page__value {
  padding: 34px 32px 34px 0;
  border-bottom: 1px solid var(--trident-line);
}
.trident-about-page__value > span {
  color: var(--trident-navy);
  font-family: var(--trident-serif);
  font-size: 15px;
  font-variant-numeric: lining-nums;
}
.trident-about-page__value h3 {
  margin: 14px 0 12px;
  color: var(--trident-ink);
  font-family: var(--trident-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.trident-about-page__value p {
  margin: 0;
  color: var(--trident-muted);
  font-size: 15.5px;
  line-height: 1.65;
}
.trident-about-page__founder {
  padding: 90px 0 140px;
  background: var(--trident-paper-deep);
}
.trident-about-page__founder-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 52px;
}
.trident-about-page__founder-heading h2 {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--trident-ink);
  font-family: var(--trident-serif);
  font-size: clamp(34px, 4.6vw, 66px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.trident-about-page__founder-heading > p {
  max-width: 360px;
  margin: 0;
  color: var(--trident-muted);
  font-size: 17px;
  line-height: 1.65;
}
.trident-about-page__founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.trident-about-page__founder-grid figure {
  margin: 0;
  overflow: hidden;
}
.trident-about-page__founder-grid figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.trident-about-page__founder-content > p {
  max-width: 540px;
  margin: 0 0 18px;
  color: var(--trident-muted);
  font-size: 17px;
  line-height: 1.65;
}
.trident-about-page__founder-content > p:nth-of-type(3) {
  margin-bottom: 30px;
}
.trident-about-page__founder-role {
  color: var(--trident-navy) !important;
  font-family: var(--trident-serif);
  font-size: 14px !important;
  font-variant-numeric: lining-nums;
}
.trident-about-page__founder-content h3 {
  margin: 10px 0 22px;
  color: var(--trident-ink);
  font-family: var(--trident-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.trident-about-page__founder-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--trident-line);
}
.trident-about-page__founder-meta dt {
  margin-bottom: 6px;
  color: var(--trident-muted);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trident-about-page__founder-meta dd {
  margin: 0;
  color: var(--trident-ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}
.trident-about-page__founder-meta .trident-about-page__founder-meta--serif {
  color: var(--trident-navy);
  font-family: var(--trident-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.trident-about-page__founder-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.trident-about-page__founder-actions .trident-button {
  min-height: 54px;
  padding: 0 30px;
  border: 0;
  border-radius: 2px;
  background: #062d6f;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.trident-about-page__founder-actions > a:last-child {
  position: relative;
  color: var(--trident-navy);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.trident-about-page__founder-actions > a:last-child::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}
.trident-about-page__why {
  padding: 140px 0;
  background: var(--trident-paper);
}
.trident-about-page__why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.trident-about-page__why-grid > figure {
  margin: 0;
  overflow: hidden;
}
.trident-about-page__why-grid > figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}
.trident-about-page__why h2 {
  margin: 20px 0 30px;
  color: var(--trident-ink);
  font-family: var(--trident-serif);
  font-size: clamp(34px, 4.6vw, 66px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.trident-about-page__feature-list {
  border-top: 1px solid var(--trident-line);
}
.trident-about-page__feature {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--trident-line);
}
.trident-about-page__feature > span {
  flex: 0 0 auto;
  color: var(--trident-navy);
  font-family: var(--trident-serif);
  font-size: 15px;
  font-variant-numeric: lining-nums;
}
.trident-about-page__feature h3 {
  margin: 0 0 6px;
  color: var(--trident-ink);
  font-family: var(--trident-serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.trident-about-page__feature p {
  margin: 0;
  color: var(--trident-muted);
  font-size: 15px;
  line-height: 1.65;
}
.trident-wrap {
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
}
.trident-eyebrow {
  color: var(--trident-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.trident-eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}
.trident-hero .trident-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.trident-hero .trident-eyebrow::before {
  display: inline-block;
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.4;
}
.trident-home h2 {
  font-size: clamp(38px, 4.1vw, 60px);
  line-height: 1.02;
}
.trident-copy {
  color: var(--trident-muted);
  font-size: 17px;
  line-height: 1.65;
}
.trident-button,
.trident-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  font-family: var(--trident-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}
.trident-button {
  min-height: 48px;
  padding: 0 23px;
  border: 1px solid var(--trident-navy);
  background: var(--trident-navy);
  color: #fff;
}
.trident-button--light {
  border-color: #fff;
  background: #fff;
  color: var(--trident-navy);
}
.trident-button--ghost {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
}
.trident-button:hover,
.trident-button:focus-visible,
.trident-text-link:hover,
.trident-text-link:focus-visible {
  transform: translateY(-2px);
}
.trident-text-link {
  color: var(--trident-navy);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.trident-arrow {
  font-size: 18px;
  line-height: 0;
}

.trident-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #071f4b;
}
.trident-hero::before,
.trident-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}
.trident-hero::before {
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(4, 16, 40, 0.82) 0%,
    rgba(4, 16, 40, 0.34) 42%,
    rgba(4, 16, 40, 0.3) 100%
  );
}
.trident-hero::after {
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(4, 16, 40, 0.46) 0%,
    rgba(4, 16, 40, 0.05) 55%,
    transparent 100%
  );
}
.trident-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trident-hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 96px, 1640px);
  margin: 0 auto;
  padding: 140px 0 72px;
}
.trident-hero h1 {
  max-width: 1000px;
  margin: 26px 0 34px;
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.trident-hero h1 em {
  font-weight: 400;
  color: inherit;
}
.trident-hero__lead {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 400;
  line-height: 1.6;
}
.trident-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}
.trident-hero .trident-button {
  min-height: 54px;
  padding: 0 30px;
  border: 0;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.trident-hero .trident-button--ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}
.trident-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 880px;
  margin-top: 76px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.trident-stat__value {
  font-family: var(--trident-serif);
  margin-bottom: 8px;
  font-size: 44px;
  line-height: 1;
}
.trident-stat__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: normal;
}
.trident-scroll-cue {
  position: absolute;
  right: 48px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.trident-scroll-cue span {
  display: inline-block;
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.4);
}

.trident-value {
  padding: 96px 0 48px;
}
.trident-value,
.trident-featured {
  color: #14181f;
  font-size: 17px;
  line-height: 1.65;
}
.trident-value__grid,
.trident-about__grid,
.trident-faq__grid,
.trident-testimonials__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: clamp(48px, 7vw, 100px);
}
.trident-value__copy {
  max-width: 800px;
  font-family: var(--trident-serif);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.trident-value__copy strong {
  color: #062d6f;
  font-weight: 400;
}
.trident-value__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 44px;
}
.trident-value .trident-wrap,
.trident-featured .trident-wrap {
  width: min(100% - 96px, 1320px);
}
.trident-value__grid {
  align-items: start;
  gap: 80px;
}
.trident-value .trident-eyebrow,
.trident-featured .trident-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #062d6f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.trident-value .trident-eyebrow::before,
.trident-featured .trident-eyebrow::before {
  display: inline-block;
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.4;
}
.trident-value .trident-button {
  min-height: 54px;
  padding: 0 30px;
  border: 0;
  background: #062d6f;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: normal;
}
.trident-value .trident-button:hover,
.trident-value .trident-button:focus-visible {
  background: #041e4a;
  transform: none;
}

.trident-featured,
.trident-services,
.trident-faq {
  background: var(--trident-paper);
}
.trident-featured {
  padding: 96px 0;
  background: #f1f0ea;
}
.trident-services {
  padding: 140px 0;
  background: #f1f0ea;
}
.trident-services .trident-wrap {
  width: min(100% - 96px, 1320px);
}
.trident-services .trident-section-heading {
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.trident-services .trident-section-heading h2 {
  max-width: 560px;
  margin-top: 22px;
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.trident-services .trident-eyebrow {
  color: #062d6f;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.22em;
}
.trident-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.trident-section-heading h2 {
  max-width: 660px;
  margin-top: 18px;
}
.trident-featured .trident-section-heading {
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.trident-featured .trident-section-heading h2 {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.trident-featured .trident-text-link,
.trident-services .trident-text-link {
  position: relative;
  gap: 8px;
  padding: 0;
  border: 0;
  color: #062d6f;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.trident-featured .trident-text-link::after,
.trident-services .trident-text-link::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #062d6f;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 450ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trident-featured .trident-text-link:hover,
.trident-featured .trident-text-link:focus-visible,
.trident-services .trident-text-link:hover,
.trident-services .trident-text-link:focus-visible {
  transform: none;
}
.trident-featured .trident-text-link:hover::after,
.trident-featured .trident-text-link:focus-visible::after,
.trident-services .trident-text-link:hover::after,
.trident-services .trident-text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.trident-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.trident-featured .trident-property-card--featured {
  display: block;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.trident-featured .trident-property-card--featured:hover,
.trident-featured .trident-property-card--featured:focus-visible {
  transform: none;
  box-shadow: none;
}
.trident-featured
  .trident-property-card--featured
  .trident-property-card__media {
  height: auto;
  aspect-ratio: 4 / 3.1;
  background: #f1f0ea;
}
.trident-featured
  .trident-property-card--featured
  .trident-property-card__media
  img {
  transition-duration: 1.1s;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trident-featured
  .trident-property-card--featured:hover
  .trident-property-card__media
  img {
  transform: scale(1.05);
}
.trident-featured
  .trident-property-card--featured
  .trident-property-card__badge {
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.trident-featured
  .trident-property-card--featured
  .trident-property-card__body {
  display: block;
  padding: 22px 0 0;
}
.trident-featured
  .trident-property-card--featured
  .trident-property-card__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 7px;
}
.trident-featured
  .trident-property-card--featured
  .trident-property-card__body
  h3 {
  color: #14181f;
  font-family: var(--trident-serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.trident-featured
  .trident-property-card--featured
  .trident-property-card__price {
  margin: 0;
  padding-left: 14px;
  color: #062d6f;
  font-family: var(--trident-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.65;
  font-variant-numeric: lining-nums;
  white-space: nowrap;
}
.trident-featured
  .trident-property-card--featured
  .trident-property-card__location {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  color: #6b6f76;
  font-size: 14px;
  line-height: 1.65;
}
.trident-featured
  .trident-property-card--featured
  .trident-property-card__icon {
  display: block;
  flex: none;
}
.trident-featured
  .trident-property-card--featured
  .trident-property-card__rule {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 16px;
  background: rgba(20, 24, 31, 0.12);
}
.trident-featured
  .trident-property-card--featured
  .trident-property-card__facts {
  align-items: center;
  gap: 20px;
  margin-top: 0;
  padding-top: 0;
  color: #6b6f76;
  font-size: 13.5px;
  line-height: 1.65;
}
.trident-featured
  .trident-property-card--featured
  .trident-property-card__fact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.trident-property-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--trident-line);
  box-shadow: 0 12px 36px rgba(7, 31, 75, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.trident-property-card:hover,
.trident-property-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(7, 31, 75, 0.14);
}
.trident-property-card__media {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #e8edf2;
}
.trident-property-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.trident-property-card:hover .trident-property-card__media img {
  transform: scale(1.04);
}
.trident-property-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--trident-navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trident-property-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.trident-property-card__body h3 {
  color: var(--trident-navy);
  font-size: 30px;
  line-height: 1.05;
}
.trident-property-card__price {
  margin-top: 10px;
  color: var(--trident-navy);
  font-size: 18px;
  font-weight: 700;
}
.trident-property-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--trident-muted);
  font-size: 13px;
}
.trident-property-card__city {
  margin-right: auto;
}

.trident-why {
  padding: 100px 0 140px;
  color: #14181f;
}
.trident-why .trident-wrap {
  width: min(100% - 96px, 1320px);
}
.trident-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.trident-why__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.trident-why .trident-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #062d6f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.trident-why .trident-eyebrow::before {
  display: inline-block;
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.4;
}
.trident-why__intro h2 {
  margin: 22px 0 26px;
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.trident-why__intro .trident-copy {
  max-width: 440px;
  margin: 0 0 34px;
  color: #6b6f76;
}
.trident-why__image-wrap {
  overflow: hidden;
}
.trident-why__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trident-why__image-wrap:hover .trident-why__image {
  transform: scale(1.045);
}
.trident-feature-list {
  border-top: 1px solid rgba(20, 24, 31, 0.12);
}
.trident-feature {
  display: flex;
  align-items: baseline;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(20, 24, 31, 0.12);
}
.trident-feature__number {
  flex: 0 0 auto;
  color: #062d6f;
  font-family: var(--trident-serif);
  font-size: 15px;
  font-weight: 400;
  font-variant-numeric: lining-nums;
}
.trident-service__number {
  color: #062d6f;
  font-family: var(--trident-serif);
  font-size: 15px;
  font-weight: 400;
  font-variant-numeric: lining-nums;
  letter-spacing: normal;
}
.trident-feature h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.trident-feature p {
  max-width: 460px;
  margin: 0;
  color: #6b6f76;
  font-size: 16px;
  line-height: 1.65;
}

.trident-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trident-reveal--visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .trident-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.trident-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(20, 24, 31, 0.12);
}
.trident-service {
  height: 100%;
  padding: 38px 32px 38px 0;
  border-bottom: 1px solid rgba(20, 24, 31, 0.12);
}
.trident-service__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  min-height: 1.65em;
  font-size: 17px;
  line-height: 1.65;
}
.trident-service__arrow {
  color: #062d6f;
  opacity: 0.4;
}
.trident-service h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.trident-service p {
  margin: 0;
  color: #6b6f76;
  font-size: 15px;
  line-height: 1.65;
}

.trident-about {
  padding: 140px 0;
}
.trident-about .trident-wrap {
  width: min(100% - 96px, 1320px);
}
.trident-about__grid {
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}
.trident-about__image-wrap {
  position: relative;
}
.trident-about__image {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}
.trident-about__year {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 26px 28px;
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: blur(8px);
}
.trident-about__year strong {
  display: block;
  color: var(--trident-navy);
  font-family: var(--trident-serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}
.trident-about__year span {
  display: block;
  margin-top: 6px;
  color: #6b6f76;
  font-size: 14px;
  line-height: 1.65;
}
.trident-about .trident-eyebrow {
  color: #062d6f;
  font-family: var(--trident-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.22em;
}
.trident-home .trident-eyebrow--tick {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #062d6f;
  font-family: var(--trident-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.22em;
}
.trident-home .trident-eyebrow--tick::before {
  display: inline-block;
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
  content: "";
  background: rgba(20, 24, 31, 0.4);
}
.trident-home .trident-eyebrow--tick.trident-eyebrow--light {
  color: rgba(255, 255, 255, 0.65);
}
.trident-home .trident-eyebrow--tick.trident-eyebrow--light::before {
  background: rgba(255, 255, 255, 0.4);
}

.trident-catalogue {
  overflow: visible;
  color: #14181f;
  background: var(--trident-paper);
  font-family: var(--trident-sans);
  font-size: 17px;
  line-height: 1.65;
}
body:has(.trident-catalogue) {
  background: var(--trident-paper);
}
body:has(.trident-catalogue) .trident-header,
body:has(.trident-property) .trident-header,
body:has(.trident-services-page) .trident-header,
body:has(.trident-contact-page) .trident-header {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 200;
}
.trident-catalogue__hero {
  padding: 150px 0 50px;
}
.trident-catalogue__wrap {
  width: min(100% - 96px, 1320px);
  margin: 0 auto;
}
.trident-catalogue__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #062d6f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}
.trident-catalogue__eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.4;
}
.trident-catalogue__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
}
.trident-catalogue__heading h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--trident-serif);
  font-size: clamp(40px, 5.2vw, 82px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  padding-bottom: 0.04em;
}

.trident-services-page {
  color: #14181f;
  background: var(--trident-paper);
  font-family: var(--trident-sans);
  letter-spacing: normal;
}
.trident-services-page__hero {
  padding: 150px 0 50px;
}
.trident-services-page__wrap {
  box-sizing: border-box;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 0 48px;
}
.trident-services-page__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #062d6f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.65;
  text-transform: uppercase;
}
.trident-services-page__eyebrow::before {
  display: inline-block;
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.4;
}
.trident-services-page__title {
  max-width: 900px;
  margin: 22px 0 0;
  padding-bottom: 0.04em;
  font-family: var(--trident-serif);
  font-size: clamp(40px, 5.2vw, 82px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.trident-services-page__lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: #2a2f38;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.trident-services-page__metrics {
  padding: 0 0 40px;
}
.trident-services-page__metrics-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin: 0;
  padding: 36px 0;
  list-style: none;
  border-top: 1px solid rgba(20, 24, 31, 0.12);
  border-bottom: 1px solid rgba(20, 24, 31, 0.12);
}
.trident-services-page__metric {
  min-width: 0;
}
.trident-services-page__metric-value {
  display: block;
  margin: 0 0 8px;
  color: #062d6f;
  font-family: var(--trident-serif);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}
.trident-services-page__metric-label {
  display: block;
  color: #6b6f76;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.65;
}
.trident-services-page__services {
  padding: 96px 0;
}
.trident-services-page__service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 64px;
  padding: 56px 0;
  scroll-margin-top: 112px;
  border-bottom: 1px solid rgba(20, 24, 31, 0.12);
}
.trident-services-page__service:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}
.trident-services-page__service-media {
  overflow: hidden;
}
.trident-services-page__service-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trident-services-page__service-media:hover img {
  transform: scale(1.045);
}
.trident-services-page__service:nth-child(even)
  .trident-services-page__service-media {
  order: 2;
}
.trident-services-page__service:nth-child(even)
  .trident-services-page__service-content {
  order: 1;
}
.trident-services-page__service-meta {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 0 0 16px;
}
.trident-services-page__service-number {
  color: #062d6f;
  font-family: var(--trident-serif);
  font-size: 17px;
  font-variant-numeric: lining-nums;
  font-weight: 400;
  line-height: 1.65;
}
.trident-services-page__service-short {
  color: #6b6f76;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.65;
  text-transform: uppercase;
}
.trident-services-page__service-title {
  margin: 0 0 18px;
  color: #14181f;
  font-family: var(--trident-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
}
.trident-services-page__service-body {
  max-width: 480px;
  margin: 0 0 26px;
  color: #6b6f76;
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.65;
}
.trident-services-page__service-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.trident-services-page__service-points li {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: #14181f;
  font-size: 14.5px;
  line-height: 1.65;
}
.trident-services-page__service-points svg {
  flex: 0 0 16px;
  color: #062d6f;
}
.trident-services-page__service-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #062d6f;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: normal;
  text-transform: uppercase;
}
.trident-services-page__service-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trident-services-page__service-link svg {
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trident-services-page__service-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.trident-services-page__service-link:hover svg {
  transform: translateX(4px);
}
.trident-services-page__process {
  padding: 140px 0;
  color: #fff;
  background: #041e4a;
  font-family: var(--trident-sans);
  letter-spacing: normal;
}
.trident-services-page__process-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.65;
  text-transform: uppercase;
}
.trident-services-page__process-eyebrow::before {
  display: inline-block;
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.4;
}
.trident-services-page__process-title {
  max-width: 600px;
  margin: 22px 0 56px;
  color: #fff;
  font-family: var(--trident-serif);
  font-size: clamp(34px, 4.6vw, 66px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.08;
}
.trident-services-page__process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trident-services-page__process-step {
  min-width: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.trident-services-page__process-number {
  display: block;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--trident-serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.04;
}
.trident-services-page__process-step h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--trident-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.04;
}
.trident-services-page__process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}
.trident-services-page__inquiry {
  padding: 96px 0;
  color: #14181f;
  border: none;
  background: #fafaf7;
  font-family: var(--trident-sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: normal;
}
.trident-services-page__inquiry-wrap {
  box-sizing: border-box;
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 0 48px;
}
.trident-services-page__inquiry-heading {
  margin: 0 0 44px;
  text-align: center;
}
.trident-services-page__inquiry-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #14181f;
}
.trident-services-page__inquiry-eyebrow-accent {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}
.trident-services-page__inquiry-eyebrow-label {
  margin: 0;
  color: #062d6f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.65;
  text-transform: uppercase;
}
.trident-services-page__inquiry-title {
  margin: 20px 0 0;
  color: #14181f;
  font-family: var(--trident-serif);
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.08;
}
.trident-services-page__inquiry-card {
  border: none;
  background: #f1f0ea;
  padding: clamp(28px, 4vw, 52px);
}
.trident-services-page__inquiry-form {
  border: none;
}
.trident-services-page__inquiry-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 24px;
}
.trident-services-page__inquiry-field {
  position: relative;
  min-width: 0;
  margin: 0 0 2px;
}
.trident-services-page__inquiry-field label {
  display: block;
  margin: 0 0 2px;
  color: #6b6f76;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.65;
  text-transform: uppercase;
}
.trident-services-page__inquiry-field input,
.trident-services-page__inquiry-field select,
.trident-services-page__inquiry-field textarea {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  min-height: 51px;
  padding: 16px 0 13px;
  color: #14181f;
  border: 0;
  border-bottom: 1px solid rgba(20, 24, 31, 0.12);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 16px;
  line-height: normal;
}
.trident-services-page__inquiry-field select {
  min-height: 53px;
}
.trident-services-page__inquiry-field textarea {
  min-height: 114px;
  resize: vertical;
}
.trident-services-page__inquiry-field input:focus,
.trident-services-page__inquiry-field select:focus,
.trident-services-page__inquiry-field textarea:focus {
  border-bottom-color: #062d6f;
}
.trident-services-page__inquiry-field input::placeholder,
.trident-services-page__inquiry-field textarea::placeholder {
  color: #96999e;
  opacity: 1;
}
.trident-services-page__inquiry-message {
  margin-bottom: 30px;
}
.trident-services-page__inquiry-actions {
  text-align: center;
}
.trident-services-page__inquiry-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  height: 54px;
  padding: 0 30px;
  color: #fff;
  border: 0;
  border-radius: 2px;
  background: #062d6f;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: normal;
  text-transform: uppercase;
}
.trident-services-page__inquiry-actions button:disabled {
  cursor: not-allowed;
  opacity: 1;
}
.trident-services-page__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
/* Contact page ------------------------------------------------------------- */
.trident-contact-page {
  color: #14181f;
  background: var(--trident-paper);
  font-family: var(--trident-sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: normal;
}
.trident-contact-page__hero {
  padding: 150px 0 50px;
}
.trident-contact-page__wrap {
  box-sizing: border-box;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 0 48px;
}
.trident-contact-page__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #062d6f;
}
.trident-contact-page__eyebrow > span {
  display: inline-block;
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}
.trident-contact-page__eyebrow p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.65;
  text-transform: uppercase;
}
.trident-contact-page h1 {
  max-width: 900px;
  margin: 22px 0 0;
  padding-bottom: 0.04em;
  font-family: var(--trident-serif);
  font-size: clamp(40px, 5.2vw, 82px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.trident-contact-page__lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: #2a2f38;
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 400;
  line-height: 1.6;
}
.trident-contact-page__content {
  padding: 30px 0 96px;
}
.trident-contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 80px;
}
.trident-contact-page__details {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.trident-contact-page__detail {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  color: #14181f;
}
a.trident-contact-page__detail:hover,
a.trident-contact-page__detail:focus-visible {
  color: #062d6f;
}
.trident-contact-page__detail-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 24, 31, 0.15);
  border-radius: 50%;
  color: #062d6f;
}
.trident-contact-page__detail-icon svg {
  display: block;
}
.trident-contact-page__detail-label {
  display: block;
  color: #6b6f76;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.65;
  text-transform: uppercase;
}
.trident-contact-page__detail strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.trident-contact-page__hours {
  margin: 40px 0 0;
}
.trident-contact-page__hours h2 {
  margin: 0 0 14px;
  color: #6b6f76;
  font-family: var(--trident-sans);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.65;
  text-transform: uppercase;
}
.trident-contact-page__hours dl {
  margin: 0;
}
.trident-contact-page__hours dl > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(20, 24, 31, 0.08);
}
.trident-contact-page__hours dl > div:last-child {
  border-bottom: 0;
}
.trident-contact-page__hours dt {
  color: #6b6f76;
  font-size: 14.5px;
  font-weight: 400;
}
.trident-contact-page__hours dd {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  text-align: right;
}
.trident-contact-page__map-placeholder {
  position: relative;
  display: flex;
  aspect-ratio: 16 / 7;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  overflow: hidden;
  color: #5d6673;
  background: #f1f0ea;
}
.trident-contact-page__map-placeholder::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: repeating-linear-gradient(
    135deg,
    rgba(20, 24, 31, 0.045) 0 1px,
    transparent 1px 11px
  );
}
.trident-contact-page__map-placeholder span {
  position: relative;
}
.trident-contact-page__map-placeholder span {
  padding: 6px 12px;
  border: 1px solid rgba(20, 24, 31, 0.1);
  background: rgba(250, 250, 247, 0.82);
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trident-contact-page__form-card {
  padding: clamp(28px, 4vw, 52px);
  background: #f1f0ea;
}
.trident-contact-page__form-card h2 {
  margin: 0 0 26px;
  color: #14181f;
  font-family: var(--trident-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
}
.trident-contact-page__form {
  border: 0;
}
.trident-contact-page__form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 24px;
}
.trident-contact-page__field {
  min-width: 0;
  margin: 0 0 2px;
}
.trident-contact-page__field label {
  display: block;
  margin: 0 0 2px;
  color: #6b6f76;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.65;
  text-transform: uppercase;
}
.trident-contact-page__field label span {
  color: #062d6f;
}
.trident-contact-page__field input,
.trident-contact-page__field select,
.trident-contact-page__field textarea {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  min-height: 51px;
  padding: 16px 0 13px;
  color: #14181f;
  border: 0;
  border-bottom: 1px solid rgba(20, 24, 31, 0.12);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.trident-contact-page__field select {
  min-height: 53px;
}
.trident-contact-page__field textarea {
  display: block;
  min-height: 114px;
  resize: vertical;
}
.trident-contact-page__field input:focus,
.trident-contact-page__field select:focus,
.trident-contact-page__field textarea:focus {
  border-bottom-color: #062d6f;
}
.trident-contact-page__field input::placeholder,
.trident-contact-page__field textarea::placeholder {
  color: #96999e;
  opacity: 1;
}
.trident-contact-page__field--message {
  margin-top: 24px;
  margin-bottom: 30px;
}
.trident-contact-page__form button {
  display: inline-flex;
  width: 100%;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 30px;
  color: #fff;
  border: 0;
  border-radius: 2px;
  background: #062d6f;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: normal;
  text-transform: uppercase;
}
.trident-contact-page__form button:disabled {
  cursor: not-allowed;
  opacity: 1;
}
.trident-contact-page__consent {
  margin: 16px 0 0;
  color: #6b6f76;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.trident-contact-page__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 900px) {
  .trident-contact-page__wrap {
    padding-inline: 24px;
  }
  .trident-contact-page__content {
    padding-bottom: 64px;
  }
  .trident-contact-page__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .trident-contact-page__form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
}

.trident-catalogue__count {
  margin: 0;
  color: var(--trident-muted);
  font-family: var(--trident-serif);
  font-size: 22px;
  font-variant-numeric: lining-nums;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.04;
}
.trident-catalogue__lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: #2a2f38;
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 400;
  line-height: 1.6;
}
.trident-catalogue__filter-panel {
  position: sticky;
  top: 96px;
  z-index: 50;
  border-top: 1px solid var(--trident-line);
  border-bottom: 1px solid var(--trident-line);
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(14px);
}
.trident-catalogue__filters-wrap {
  width: min(100% - 96px, 1320px);
  margin: 0 auto;
  padding: 18px 0;
}
.trident-catalogue__filters-primary,
.trident-catalogue__filters-secondary,
.trident-catalogue__filter-actions,
.trident-catalogue__view-switch,
.trident-catalogue__filter-search {
  display: flex;
  align-items: center;
}
.trident-catalogue__filters-primary {
  display: block;
}
.trident-catalogue__filter-search {
  width: 100%;
  min-width: 0;
  gap: 8px;
  min-height: 40px;
  padding: 2px 6px;
  color: var(--trident-muted);
  border-bottom: 1px solid var(--trident-line);
  border-radius: 3px;
  font-size: 15px;
  line-height: 1.2;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}
.trident-catalogue__filter-search svg {
  flex: 0 0 auto;
}
.trident-catalogue__filter-search input {
  width: 100%;
  min-width: 0;
  padding: 7px 2px;
  color: var(--trident-muted);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 15px;
  line-height: 1.2;
}
.trident-catalogue__filter-search input::placeholder {
  color: var(--trident-muted);
  opacity: 1;
}
.trident-catalogue__filter-search:focus-within {
  border-color: var(--trident-navy);
  box-shadow: 0 0 0 2px rgba(10, 47, 109, 0.24);
}
.trident-catalogue__filter-select {
  padding: 9px 34px 9px 14px;
  color: #2a2f38;
  background: transparent url("/static/icons/chevron-down.svg") no-repeat
    calc(100% - 12px) 50%;
  border: 1px solid var(--trident-line);
  border-radius: 2px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13.5px;
  line-height: normal;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}
.trident-catalogue__filter-select:hover,
.trident-catalogue__filter-select:focus-visible {
  border-color: var(--trident-navy);
}
.trident-catalogue__filter-select:focus-visible,
.trident-catalogue__view-option:focus-visible {
  outline: 2px solid var(--trident-blue);
  outline-offset: 3px;
}
.trident-catalogue__filters-secondary {
  justify-content: flex-end;
  margin-top: 12px;
}
.trident-catalogue__filter-actions {
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.trident-catalogue__view-switch {
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--trident-line);
  border-radius: 2px;
}
.trident-catalogue__view-option {
  padding: 8px 16px;
  color: var(--trident-muted);
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}
.trident-catalogue__view-option--active {
  color: #fff;
  background: var(--trident-navy);
  border-radius: 1px;
}
.trident-catalogue__card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.trident-catalogue .trident-property-card {
  display: block;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.trident-catalogue .trident-property-card:hover,
.trident-catalogue .trident-property-card:focus-visible {
  transform: none;
  box-shadow: none;
}
.trident-catalogue .trident-property-card__media {
  height: auto;
  aspect-ratio: 4 / 3.1;
  background: #f1f0ea;
}
.trident-catalogue .trident-property-card__media img {
  transition-duration: 1.1s;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trident-catalogue
  .trident-property-card:hover
  .trident-property-card__media
  img {
  transform: scale(1.05);
}
.trident-catalogue .trident-property-card__badge {
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(6px);
  color: #14181f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.trident-catalogue .trident-property-card__body {
  display: block;
  padding: 22px 0 0;
}
.trident-catalogue .trident-property-card__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 7px;
}
.trident-catalogue .trident-property-card__body h3 {
  color: #14181f;
  font-family: var(--trident-serif);
  font-size: 25px;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.trident-catalogue .trident-property-card__price {
  flex: 0 0 auto;
  margin: 0;
  padding-left: 14px;
  color: #062d6f;
  font-family: var(--trident-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.65;
  font-variant-numeric: lining-nums;
  white-space: nowrap;
}
.trident-catalogue .trident-property-card__location {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 16px;
  color: #6b6f76;
  font-size: 14px;
  line-height: 1.65;
}
.trident-catalogue .trident-property-card__icon {
  display: block;
  flex: none;
}
.trident-catalogue .trident-property-card__rule {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 16px;
  background: rgba(20, 24, 31, 0.12);
}
.trident-catalogue .trident-property-card__facts {
  align-items: center;
  gap: 20px;
  margin-top: 0;
  padding-top: 0;
  color: #6b6f76;
  font-size: 13.5px;
  line-height: 1.65;
}
.trident-catalogue .trident-property-card__fact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.trident-catalogue .trident-property-card__fact-label {
  display: none;
}
.trident-catalogue__card-grid--list {
  grid-template-columns: 1fr;
  gap: 0;
}
.trident-catalogue__card-grid--list .trident-property-card {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) minmax(170px, auto);
  gap: 36px;
  align-items: center;
  padding: 28px 0;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid var(--trident-line);
  border-radius: 0;
  box-shadow: none;
}
.trident-catalogue__card-grid--list .trident-property-card:hover,
.trident-catalogue__card-grid--list .trident-property-card:focus-visible {
  transform: none;
  box-shadow: none;
}
.trident-catalogue__card-grid--list .trident-property-card__media {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 2.8;
}
.trident-catalogue__card-grid--list .trident-property-card__body {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.trident-catalogue__card-grid--list .trident-property-card__heading {
  order: 2;
  display: block;
  margin: 0;
}
.trident-catalogue__card-grid--list .trident-property-card__body h3 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.04;
}
.trident-catalogue__card-grid--list
  .trident-property-card__heading
  .trident-property-card__price,
.trident-catalogue__card-grid--list .trident-property-card__rule {
  display: none;
}
.trident-catalogue__card-grid--list .trident-property-card__location {
  order: 1;
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.65;
}
.trident-catalogue__card-grid--list .trident-property-card__facts {
  order: 3;
  gap: 20px;
  margin: 0;
  padding: 0;
  color: #6b6f76;
}
.trident-catalogue__card-grid--list .trident-property-card__fact {
  color: #6b6f76;
  letter-spacing: normal;
}
.trident-catalogue__card-grid--list .trident-property-card__fact-label {
  display: inline;
}
.trident-catalogue .trident-property-card__list-action {
  display: none;
}
.trident-catalogue__card-grid--list .trident-property-card__list-action {
  display: block;
  align-self: center;
  min-width: 170px;
  color: #14181f;
  text-align: right;
}
.trident-catalogue__card-grid--list .trident-property-card__list-price {
  margin: 0 0 16px;
  color: #062d6f;
  font-family: var(--trident-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.65;
  white-space: nowrap;
}
.trident-catalogue__card-grid--list .trident-property-card__list-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  box-shadow: inset 0 0 0 1px rgba(20, 24, 31, 0.12);
  color: #062d6f;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trident-catalogue [data-catalogue-card][hidden] {
  display: none;
}
.trident-catalogue__results {
  padding: 56px 0 96px;
  background: #fafaf7;
}
.trident-catalogue__results-wrap {
  box-sizing: border-box;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 0 48px;
}
.trident-catalogue__no-match {
  margin: 0;
  padding: 48px 0;
  color: var(--trident-muted);
  text-align: center;
}
@media (max-width: 900px) {
  .trident-catalogue__results {
    padding: 64px 0;
  }
  .trident-catalogue__results-wrap {
    padding: 0 24px;
  }
  .trident-catalogue__card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .trident-catalogue__card-grid {
    grid-template-columns: 1fr;
  }
}
.trident-about h2 {
  margin: 22px 0 24px;
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.trident-home .trident-about__lead {
  margin: 0 0 20px;
  color: #2a2f38;
  font-family: var(--trident-sans);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.6;
}
.trident-home .trident-about__copy {
  margin: 0 0 34px;
  color: #6b6f76;
  font-size: 16px;
  line-height: 1.65;
}
.trident-about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 0 0 36px;
}
.trident-about__stats > div {
  padding-left: 18px;
  border-left: 2px solid #062d6f;
}
.trident-about__stats strong {
  display: block;
  color: var(--trident-navy);
  font-family: var(--trident-serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}
.trident-about__stats span {
  display: block;
  margin-top: 6px;
  color: #6b6f76;
  font-size: 13.5px;
  line-height: 1.65;
}
.trident-about .trident-button {
  min-height: 54px;
  height: 54px;
  padding: 0 30px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.trident-testimonials {
  padding: 140px 0;
  color: #fff;
  background: #041f4b;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: normal;
}
.trident-testimonials .trident-wrap {
  width: 100%;
  max-width: 1320px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 48px;
}
.trident-testimonials__carousel {
  position: relative;
}
.trident-testimonials__selector {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.trident-testimonials__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-top: 40px;
  align-items: stretch;
}
.trident-testimonials__slides {
  display: grid;
}
.trident-review {
  display: none;
  grid-area: 1 / 1;
}
.trident-review blockquote {
  margin: 0;
  font-family: var(--trident-serif);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.trident-review__byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.trident-review__person,
.trident-review__controls {
  display: flex;
  align-items: center;
}
.trident-review__person {
  gap: 16px;
}
.trident-review__controls {
  gap: 12px;
}
.trident-review__initials {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-family: var(--trident-serif);
  font-size: 18px;
}
.trident-review__person strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
}
.trident-review__person > div > span {
  display: block;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.trident-review__nav {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}
.trident-review__nav:hover {
  background: #fff;
  color: var(--trident-navy);
}
.trident-review__nav-icon {
  display: block;
}
.trident-review__nav-icon--previous {
  transform: rotate(180deg);
}
.trident-review__nav svg {
  display: block;
}
.trident-testimonials__image-wrap {
  min-height: 320px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.trident-testimonials__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trident-testimonials__dots {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}
.trident-testimonials__dot {
  width: 80px;
  height: 2px;
  max-width: 80px;
  flex: 1;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.4s;
}
.trident-testimonials__selector:nth-of-type(1):checked
  ~ .trident-testimonials__grid
  .trident-review:nth-child(1),
.trident-testimonials__selector:nth-of-type(2):checked
  ~ .trident-testimonials__grid
  .trident-review:nth-child(2),
.trident-testimonials__selector:nth-of-type(3):checked
  ~ .trident-testimonials__grid
  .trident-review:nth-child(3),
.trident-testimonials__selector:nth-of-type(4):checked
  ~ .trident-testimonials__grid
  .trident-review:nth-child(4) {
  display: block;
}
.trident-testimonials__selector:nth-of-type(1):checked
  ~ .trident-testimonials__dots
  .trident-testimonials__dot:nth-child(1),
.trident-testimonials__selector:nth-of-type(2):checked
  ~ .trident-testimonials__dots
  .trident-testimonials__dot:nth-child(2),
.trident-testimonials__selector:nth-of-type(3):checked
  ~ .trident-testimonials__dots
  .trident-testimonials__dot:nth-child(3),
.trident-testimonials__selector:nth-of-type(4):checked
  ~ .trident-testimonials__dots
  .trident-testimonials__dot:nth-child(4) {
  background: #fff;
}

.trident-cta {
  color: #fff;
  font-family: var(--trident-sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: normal;
  background: linear-gradient(120deg, #0b367c, #071f4b);
}
.trident-cta__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1320px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 120px 48px;
}
.trident-cta h2 {
  max-width: 640px;
  margin-top: 22px;
  font-family: var(--trident-serif);
  font-size: clamp(34px, 4.6vw, 66px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.trident-cta .trident-eyebrow {
  font-family: var(--trident-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.22em;
}
.trident-cta .trident-eyebrow--tick {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trident-cta .trident-eyebrow--tick::before {
  display: inline-block;
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.4;
}
.trident-cta .trident-copy {
  max-width: 420px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.65;
}
.trident-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.trident-cta .trident-button {
  min-height: 54px;
  height: 54px;
  padding: 0 30px;
  border: 0;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.04em;
}
.trident-cta .trident-button--ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}
.trident-cta .trident-button--light {
  color: #062d6f;
}
.trident-cta__arrow {
  display: block;
}

.trident-home-contact {
  padding: 140px 0;
  background: var(--trident-paper);
}
.trident-home-contact .trident-wrap {
  width: 100%;
  max-width: 1320px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 48px;
}
.trident-home-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.trident-home-contact__intro h2 {
  margin: 22px 0 24px;
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.trident-home-contact__intro .trident-copy {
  max-width: 420px;
  margin-bottom: 36px;
}
.trident-home-contact__details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.trident-home-contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--trident-ink);
}
a.trident-home-contact__detail:hover,
a.trident-home-contact__detail:focus-visible {
  color: var(--trident-blue);
}
.trident-home-contact__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--trident-line);
  border-radius: 50%;
  color: var(--trident-navy);
}
.trident-home-contact__label {
  display: block;
  color: var(--trident-muted);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.65;
  text-transform: uppercase;
}
.trident-home-contact__detail strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}
.trident-home-contact__form {
  padding: clamp(28px, 4vw, 52px);
  background: #f1f0ea;
}
.trident-home-contact__field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.trident-home-contact__field {
  position: relative;
  margin-bottom: 2px;
}
.trident-home-contact__field label {
  display: block;
  margin-bottom: 2px;
  color: var(--trident-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.65;
  text-transform: uppercase;
}
.trident-home-contact__field label span {
  color: var(--trident-navy);
}
.trident-home-contact__field input,
.trident-home-contact__field select,
.trident-home-contact__field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid var(--trident-line);
  border-radius: 0;
  background: transparent;
  color: var(--trident-ink);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  padding: 16px 0 13px;
  transition: border-color 0.3s;
}
.trident-home-contact__field textarea {
  display: block;
  min-height: 112px;
  resize: vertical;
}
.trident-home-contact__field input::placeholder,
.trident-home-contact__field textarea::placeholder {
  color: #9a9da3;
}
.trident-home-contact__field input:focus,
.trident-home-contact__field select:focus,
.trident-home-contact__field textarea:focus {
  outline: 0;
  border-bottom-color: var(--trident-navy);
}
.trident-home-contact__field.is-invalid input,
.trident-home-contact__field.is-invalid select,
.trident-home-contact__field.is-invalid textarea {
  border-bottom-color: #b5462e;
}
.trident-home-contact__error {
  display: none;
  margin: 6px 0 0;
  color: #b5462e;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.trident-home-contact__field.is-invalid .trident-home-contact__error {
  display: block;
}
.trident-home-contact__field--message {
  margin-top: 24px;
  margin-bottom: 30px;
}
.trident-home-contact__form .trident-button {
  width: 100%;
  height: 54px;
  min-height: 54px;
  border: 0;
  border-radius: 2px;
  background: #062d6f;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.trident-home-contact__form .trident-button:hover,
.trident-home-contact__form .trident-button:focus-visible {
  background: #041e4a;
}
.trident-home-contact__consent {
  margin-top: 16px;
  color: var(--trident-muted);
  font-size: 12.5px;
  line-height: 1.5;
  text-align: center;
}
.trident-home-contact__success {
  padding: 60px 0;
  text-align: center;
}
.trident-home-contact__success:focus {
  outline: 0;
}
.trident-home-contact__success-icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--trident-navy);
  color: #fff;
}
.trident-home-contact__success h3 {
  margin: 0 0 12px;
  color: var(--trident-ink);
  font-family: var(--trident-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
}
.trident-home-contact__success p {
  max-width: 380px;
  margin: 0 auto;
  color: var(--trident-muted);
  line-height: 1.65;
}

.trident-faq {
  padding: 96px 0;
  background: #f1f0ea;
}
.trident-faq .trident-wrap {
  width: min(100% - 96px, 1224px);
}
.trident-faq__grid {
  gap: 70px;
}
.trident-faq__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.trident-faq__intro h2 {
  margin: 22px 0;
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.trident-faq__intro .trident-copy {
  margin: 0 0 26px;
}
.trident-faq .trident-button--ghost {
  min-height: 54px;
  padding: 0 30px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: var(--trident-navy);
  box-shadow: inset 0 0 0 1px var(--trident-line);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.trident-faq .trident-button--ghost:hover,
.trident-faq .trident-button--ghost:focus-visible {
  transform: none;
  background: var(--trident-navy);
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--trident-navy);
}
.trident-faq-item {
  border-bottom: 1px solid var(--trident-line);
}
.trident-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
  color: var(--trident-navy);
  font-family: var(--trident-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.trident-faq-item summary::-webkit-details-marker {
  display: none;
}
.trident-faq-item summary::after {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  content: "";
  background:
    linear-gradient(currentColor, currentColor) center / 100% 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 100% no-repeat;
  transition: background-size 400ms ease;
}
.trident-faq-item[open] summary::after {
  background-size:
    100% 1.5px,
    1.5px 0;
}
.trident-faq-item p {
  max-width: 600px;
  padding-bottom: 30px;
  color: var(--trident-muted);
  font-size: 16px;
  line-height: 1.65;
}

.trident-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #041e4a;
  font-family: var(--trident-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: normal;
  text-rendering: optimizeLegibility;
}
.trident-footer__main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 90px 0 0;
}
.trident-footer__wordmark {
  display: block;
  width: 150px;
  height: 50px;
}
.trident-footer__wordmark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.trident-footer__brand p {
  max-width: 300px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.65;
}
.trident-footer h2 {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--trident-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.65;
  text-transform: uppercase;
}
.trident-footer nav,
.trident-footer__service-list,
.trident-footer__contact-links {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trident-footer a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 300ms ease;
}
.trident-footer a:hover,
.trident-footer a:focus-visible {
  color: #fff;
}
.trident-footer__main nav a,
.trident-footer__contact-links a {
  display: block;
  padding: 7px 0;
  font-size: 14.5px;
}
.trident-footer address {
  display: block;
  margin: 0;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  font-style: normal;
  line-height: 1.65;
}
.trident-footer__contact-links {
  margin: 0;
}
.trident-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.trident-footer__social a {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  padding: 9px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: inherit;
  transition:
    border-color 300ms ease,
    color 300ms ease;
}
.trident-footer__booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  margin-top: 18px;
  padding: 0 22px;
  border-radius: 2px;
  background: #fff;
  color: var(--trident-navy) !important;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background 300ms ease,
    color 300ms ease;
}
.trident-footer__booking:hover,
.trident-footer__booking:focus-visible {
  background: #f1f0ea;
  color: var(--trident-navy) !important;
}
.trident-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 56px;
  padding: 24px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}
.trident-footer__bottom nav {
  display: flex;
  gap: 28px;
}

@media (max-width: 980px) {
  .trident-header__nav {
    display: none;
  }
  .trident-header__contact,
  .trident-scroll-cue {
    display: none;
  }
  .trident-menu-toggle {
    display: block;
  }
  .trident-mobile-menu {
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: #071f4b;
  }
  .trident-mobile-menu:not([hidden]) {
    display: block;
  }
  .trident-mobile-menu__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
  }
  .trident-mobile-menu__bar button {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
  }
  .trident-mobile-menu nav {
    display: grid;
    gap: 16px;
    margin-top: 25px;
  }
  .trident-mobile-menu nav a {
    color: #fff;
    font-family: var(--trident-serif);
    font-size: 33px;
    line-height: 1;
  }
  .trident-mobile-menu__languages {
    display: flex;
    gap: 14px;
    margin-top: 28px;
  }
  .trident-mobile-menu__languages .trident-language-link {
    color: rgba(255, 255, 255, 0.7);
  }
  .trident-value__grid,
  .trident-about__grid,
  .trident-faq__grid,
  .trident-testimonials__grid {
    grid-template-columns: 1fr;
  }
  .trident-faq__intro {
    position: static;
  }
  .trident-testimonials__image {
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  .trident-about-page__wrap {
    padding: 0 24px;
  }
  .trident-about-page__story {
    padding-top: 88px;
  }
  .trident-about-page__story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trident-about-page__image-band-wrap {
    padding: 0 24px;
  }
  .trident-about-page__image-grid {
    height: auto;
  }
  .trident-about-page__image-grid img {
    height: 46vw;
  }
  .trident-about-page__confidence-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trident-about-page__values {
    padding-top: 88px;
  }
  .trident-about-page__values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trident-about-page__founder {
    padding-top: 64px;
    padding-bottom: 88px;
  }
  .trident-about-page__founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trident-about-page__why {
    padding: 88px 0;
  }
  .trident-about-page__why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trident-services-page__wrap {
    padding-inline: 24px;
  }
  .trident-services-page__metrics-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }
  .trident-services-page__services {
    padding: 64px 0;
  }
  .trident-services-page__service,
  .trident-services-page__service:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .trident-services-page__service:nth-child(even)
    .trident-services-page__service-media,
  .trident-services-page__service:nth-child(even)
    .trident-services-page__service-content {
    order: initial;
  }
  .trident-services-page__process {
    padding: 88px 0;
  }
  .trident-services-page__inquiry {
    padding: 64px 0;
  }
  .trident-services-page__inquiry-wrap {
    padding-inline: 24px;
  }
  .trident-services-page__inquiry-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .trident-catalogue__wrap {
    width: min(100% - 48px, 1320px);
  }
  .trident-catalogue__filters-wrap {
    width: min(100% - 48px, 1320px);
  }
  .trident-catalogue__heading h1 {
    font-size: 44px;
  }
  .trident-cta__inner,
  .trident-home-contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trident-home-contact__field-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trident-header__inner {
    width: min(100% - 48px, 1640px);
  }
  .trident-home .trident-why {
    padding: 88px 0;
  }
  .trident-why .trident-wrap {
    width: min(100% - 48px, 1320px);
  }
  .trident-why__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trident-why__intro {
    position: static;
  }
  .trident-faq {
    padding: 64px 0;
  }
  .trident-faq .trident-wrap {
    width: min(100% - 48px, 1224px);
  }
  .trident-footer__main,
  .trident-footer__bottom {
    width: min(100% - 48px, 1224px);
  }
  .trident-footer__main {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 700px) {
  .trident-footer__bottom nav {
    max-width: 100%;
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .trident-not-found__wrap {
    width: min(100% - 32px, 1320px);
  }
  .trident-not-found__copy {
    font-size: 16px;
  }
  .trident-not-found__nav {
    gap: 14px 20px;
    margin-top: 40px;
  }
  .trident-about-page__story {
    padding-top: 72px;
    padding-bottom: 48px;
  }
  .trident-about-page__story-copy {
    font-size: 16px;
  }
  .trident-about-page__image-band {
    padding-bottom: 72px;
  }
  .trident-about-page__confidence {
    padding: 56px 0;
  }
  .trident-about-page__confidence-copy {
    font-size: 16px;
  }
  .trident-about-page__values {
    padding-top: 72px;
    padding-bottom: 48px;
  }
  .trident-about-page__values-grid {
    grid-template-columns: 1fr;
  }
  .trident-about-page__founder {
    padding-bottom: 72px;
  }
  .trident-about-page__founder-meta {
    gap: 22px;
  }
  .trident-about-page__why {
    padding: 72px 0;
  }
  .trident-about-page__hero-content {
    padding-top: 105px;
    padding-bottom: 38px;
  }
  .trident-about-page__hero h1 {
    font-size: 44px;
  }
  .trident-header__inner,
  .trident-wrap {
    width: min(100% - 32px, 1240px);
  }
  .trident-home-contact .trident-wrap {
    padding: 0 16px;
  }
  .trident-header__inner {
    min-height: 64px;
  }
  .trident-catalogue__filter-panel {
    top: 64px;
  }
  .trident-catalogue__filters-wrap {
    width: min(100% - 32px, 1320px);
  }
  .trident-catalogue__filter-search {
    flex-basis: 100%;
  }
  .trident-catalogue__filter-search {
    min-width: 0;
  }
  .trident-catalogue__filters-secondary {
    align-items: flex-start;
  }
  .trident-catalogue__filter-actions {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    gap: 10px;
  }
  .trident-catalogue__card-grid--list .trident-property-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .trident-catalogue__card-grid--list .trident-property-card__media {
    height: auto;
  }
  .trident-catalogue__card-grid--list .trident-property-card__body {
    min-height: 0;
    padding: 24px 0;
  }
  .trident-catalogue__card-grid--list .trident-property-card__list-action {
    align-self: start;
    margin: 0 0 24px;
    text-align: left;
  }
  .trident-header__brand {
    width: 110px;
    height: 64px;
  }
  .trident-language-links {
    display: none;
  }
  .trident-hero {
    min-height: 100svh;
  }
  .trident-hero__content {
    width: min(100% - 48px, 1640px);
    padding: 105px 0 38px;
  }
  .trident-hero h1 {
    font-size: 47px;
  }
  .trident-hero__lead {
    font-size: 15px;
  }
  .trident-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 44px;
  }
  .trident-stat__value {
    font-size: 35px;
  }
  .trident-value,
  .trident-why,
  .trident-about,
  .trident-home-contact {
    padding: 72px 0;
  }
  .trident-featured,
  .trident-services,
  .trident-testimonials {
    padding: 72px 0;
  }
  .trident-section-heading {
    display: grid;
    align-items: start;
    margin-bottom: 34px;
  }
  .trident-featured__grid,
  .trident-service-grid {
    grid-template-columns: 1fr;
  }
  .trident-service {
    min-height: 0;
    padding: 26px 0;
  }
  .trident-service:nth-child(3n + 2),
  .trident-service:nth-child(3n + 3) {
    padding-left: 0;
    border-left: 0;
  }
  .trident-service h3 {
    margin-top: 26px;
  }
  .trident-about__year {
    right: 15px;
    bottom: 15px;
    left: 15px;
  }
}

@media (max-width: 600px) {
  .trident-footer__main {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) and (max-width: 980px) {
  .trident-value__grid {
    grid-template-columns: 0.8fr 1.6fr;
  }
}

@media (max-width: 1100px) {
  .trident-services-page__process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trident-featured__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trident-services-page__process-steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .trident-value .trident-wrap,
  .trident-featured .trident-wrap {
    width: min(100% - 48px, 1320px);
  }
  .trident-value {
    padding: 64px 0 48px;
  }
  .trident-featured {
    padding: 96px 0;
  }
  .trident-value__grid {
    gap: 40px;
  }
}

@media (min-width: 601px) and (max-width: 700px) {
  .trident-featured .trident-section-heading {
    display: flex;
    align-items: flex-end;
  }
}

@media (max-width: 600px) {
  .trident-featured .trident-section-heading {
    display: flex;
    align-items: flex-end;
  }
  .trident-featured__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .trident-services .trident-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .trident-services {
    padding: 88px 0;
  }
  .trident-services .trident-wrap {
    width: min(100% - 48px, 1320px);
  }
  .trident-services .trident-section-heading {
    display: flex;
    align-items: flex-end;
    margin-bottom: 56px;
  }
  .trident-services .trident-service {
    min-height: 0;
    padding: 38px 32px 38px 0;
  }
  .trident-services .trident-service h3 {
    margin: 0 0 10px;
  }
  .trident-services .trident-service__meta {
    font-size: 16px;
  }
  .trident-about {
    padding: 88px 0;
  }
  .trident-about .trident-wrap {
    width: min(100% - 48px, 1320px);
  }
  .trident-about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trident-about__year {
    right: 28px;
    bottom: 28px;
    left: 28px;
  }
}

@media (max-width: 600px) {
  .trident-services .trident-service-grid {
    grid-template-columns: 1fr;
  }
}

/* Property-detail top slice ------------------------------------------------ */
.trident-property {
  color: var(--trident-ink);
  background: var(--trident-paper);
  font-family: var(--trident-sans);
}
.trident-property .trident-wrap {
  box-sizing: border-box;
  width: min(100%, 1320px);
  margin-inline: auto;
  padding-inline: 48px;
}
.trident-property__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 110px;
  padding-bottom: 18px;
  overflow: hidden;
  color: var(--trident-muted);
  font-size: 13px;
  line-height: 1.65;
  white-space: nowrap;
}
.trident-property__breadcrumb a {
  transition: color 160ms ease;
}
.trident-property__breadcrumb a:hover,
.trident-property__breadcrumb a:focus-visible {
  color: var(--trident-navy);
}
.trident-property__breadcrumb [aria-current="page"] {
  overflow: hidden;
  color: var(--trident-ink);
  text-overflow: ellipsis;
}
.trident-property__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.trident-property__identity {
  min-width: 0;
}
.trident-property__badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 12px;
  color: #062d6f;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trident-property h1 {
  margin: 0;
  font-family: var(--trident-serif);
  font-size: clamp(38px, 4.6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  padding-bottom: 0.04em;
}
.trident-property__location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--trident-muted);
  font-size: 16px;
  line-height: 1.65;
}
.trident-property__location svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.trident-property__price {
  display: grid;
  flex: 0 0 auto;
  gap: 6px;
  min-width: max-content;
  text-align: right;
}
.trident-property__price > span {
  color: var(--trident-muted);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trident-property__price strong {
  color: #062d6f;
  font-family: var(--trident-serif);
  font-size: 44px;
  font-weight: 500;
  font-variant-numeric: lining-nums;
  line-height: 1;
}
.trident-property__gallery-section {
  box-sizing: border-box;
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: 0 48px;
}
.trident-property__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  height: 560px;
}
.trident-property__gallery-tile {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--trident-paper-deep);
  cursor: pointer;
  text-align: inherit;
}
.trident-property__gallery-tile:focus-visible {
  outline: 2px solid #062d6f;
  outline-offset: 3px;
}
.trident-property__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trident-property__gallery-tile:hover img {
  transform: scale(1.045);
}
.trident-property__gallery-secondary {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 0;
}
.trident-property__gallery--two
  .trident-property__gallery-secondary
  .trident-property__gallery-tile:only-child {
  grid-row: 1 / -1;
}
.trident-property__gallery--single {
  display: block;
  height: auto;
}
.trident-property__gallery--single .trident-property__gallery-tile {
  min-height: min(560px, 52vw);
}
.trident-property__gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-direction: column;
  padding: 24px;
  color: #fff;
  background: rgba(4, 16, 40, 0.55);
  text-align: center;
}
.trident-property__gallery-overlay strong {
  font-family: var(--trident-serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}
.trident-property__gallery-overlay span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.trident-property__gallery-all {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin: 14px 0 0 auto;
  padding: 0 22px;
  border: 1px solid var(--trident-line);
  color: #062d6f;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}
.trident-property__gallery-all:hover,
.trident-property__gallery-all:focus-visible {
  border-color: #062d6f;
  color: #fff;
  background: #062d6f;
}
.trident-property__lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: #fff;
  background: rgba(6, 16, 34, 0.96);
}
.trident-property__lightbox:not([open]) {
  display: none;
}
.trident-property__lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.trident-property__lightbox::backdrop {
  background: rgba(6, 16, 34, 0.96);
}
.trident-property__lightbox-close {
  position: absolute;
  top: 30px;
  right: 38px;
  z-index: 2;
  padding: 8px;
  border: 0;
  color: #fff;
  background: transparent;
  font-family: var(--trident-sans);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}
.trident-property__lightbox-stage {
  position: relative;
  width: min(1100px, 88vw);
  height: 74vh;
}
.trident-property__lightbox-stage > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.trident-property__lightbox-nav {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 24px;
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease;
}
.trident-property__lightbox-nav:hover,
.trident-property__lightbox-nav:focus-visible {
  color: #062d6f;
  background: #fff;
}
.trident-property__lightbox-nav--previous {
  left: -78px;
}
.trident-property__lightbox-nav--next {
  right: -78px;
}
.trident-property__lightbox-counter {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--trident-sans);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.trident-property__body {
  padding: 96px 0;
}
.trident-property__body-inner {
  width: min(100% - 96px, 1320px);
  margin: 0 auto;
}
.trident-property__quick-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--trident-line);
  border-bottom: 1px solid var(--trident-line);
}
.trident-property__quick-spec {
  min-width: 0;
  padding: 24px 0;
}
.trident-property__quick-spec + .trident-property__quick-spec {
  border-left: 1px solid var(--trident-line-soft);
  padding-left: 20px;
}
.trident-property__quick-spec dt {
  margin: 0 0 8px;
  color: var(--trident-muted);
  font-family: var(--trident-sans);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}
.trident-property__quick-spec dd {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  margin: 0;
  color: var(--trident-navy);
}
.trident-property__quick-spec svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}
.trident-property__quick-spec dd span {
  color: var(--trident-ink);
  font-family: var(--trident-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}
.trident-property__description {
  margin-top: 56px;
}
.trident-property__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--trident-navy);
  font-family: var(--trident-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.65;
  text-transform: uppercase;
}
.trident-property__eyebrow::before {
  display: inline-block;
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.4;
}
.trident-property__description h2 {
  margin: 20px 0;
  color: var(--trident-ink);
  font-family: var(--trident-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
}
.trident-property__description-copy {
  margin: 0;
  color: var(--trident-muted);
  font-family: var(--trident-sans);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.6;
  white-space: pre-line;
}
.trident-property__description-copy + .trident-property__description-copy {
  margin-top: 18px;
}
.trident-property__details {
  margin-top: 56px;
}
.trident-property__details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  margin: 22px 0 0;
}
.trident-property__details-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--trident-line-soft);
}
.trident-property__details-item dt {
  color: var(--trident-muted);
  font-family: var(--trident-sans);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.5;
}
.trident-property__details-item dd {
  margin: 0;
  color: var(--trident-ink);
  font-family: var(--trident-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
}
.trident-property__amenities {
  margin-top: 56px;
}
.trident-property__amenities-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 40px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.trident-property__amenity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--trident-line-soft);
}
.trident-property__amenity svg {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  color: var(--trident-navy);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.trident-property__amenity span {
  font-size: 15.5px;
}
.trident-property__location-section {
  margin-top: 56px;
}
.trident-property__location-heading {
  margin: 18px 0 22px;
  color: var(--trident-ink);
  font-family: var(--trident-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
}
.trident-property__location-copy {
  max-width: 760px;
  margin: 0;
  color: var(--trident-muted);
  font-family: var(--trident-sans);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.6;
  white-space: pre-line;
}
.trident-property__content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}
.trident-property__advisor {
  position: sticky;
  top: 110px;
}
.trident-property__advisor-card {
  padding: 32px;
  border: 1px solid rgba(20, 24, 31, 0.12);
  background: #fff;
}
.trident-property__advisor-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.trident-property__advisor-avatar {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
}
.trident-property__advisor-label,
.trident-property__advisor-name,
.trident-property__advisor-role {
  margin: 0;
}
.trident-property__advisor-label {
  color: #6b6f76;
  font-family: var(--trident-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.65;
  text-transform: uppercase;
}
.trident-property__advisor-name {
  margin-top: 2px;
  color: #14181f;
  font-family: var(--trident-sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}
.trident-property__advisor-role {
  margin-top: 2px;
  color: #6b6f76;
  font-family: var(--trident-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.65;
}
.trident-property__advisor-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}
.trident-property__advisor-actions a {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  height: 46px;
  padding: 0 22px;
  box-shadow: inset 0 0 0 1px rgba(20, 24, 31, 0.12);
  color: #062d6f;
  font-family: var(--trident-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.65;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trident-property__advisor-actions a:hover,
.trident-property__advisor-actions a:focus-visible {
  box-shadow: inset 0 0 0 1px #062d6f;
  color: #fff;
  background: #062d6f;
}
.trident-property__advisor-actions svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.trident-property__advisor-rule {
  width: 100%;
  height: 1px;
  margin-bottom: 22px;
  background: rgba(20, 24, 31, 0.12);
}
.trident-property__advisor-form h3 {
  margin: 0 0 18px;
  color: #14181f;
  font-family: var(--trident-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.04;
}
.trident-property__advisor-field {
  position: relative;
  margin-bottom: 18px;
}
.trident-property__advisor-field label {
  display: block;
  margin-bottom: 2px;
  color: #6b6f76;
  font-family: var(--trident-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.65;
  text-transform: uppercase;
}
.trident-property__advisor-field input,
.trident-property__advisor-field textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 16px 0 13px;
  border: 0;
  border-bottom: 1px solid rgba(20, 24, 31, 0.12);
  border-radius: 0;
  outline: 0;
  color: #14181f;
  background: transparent;
  font: inherit;
  font-family: var(--trident-sans);
  font-size: 16px;
  line-height: normal;
  transition: border-color 0.3s;
}
.trident-property__advisor-field textarea {
  min-height: 92px;
  resize: vertical;
}
.trident-property__advisor-field input::placeholder,
.trident-property__advisor-field textarea::placeholder {
  color: #9a9da3;
  opacity: 1;
}
.trident-property__advisor-field input:focus,
.trident-property__advisor-field textarea:focus {
  border-bottom-color: #062d6f;
}
.trident-property__advisor-message {
  margin-bottom: 22px;
}
.trident-property__advisor-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 54px;
  padding: 0 30px;
  border: 0;
  border-radius: 2px;
  color: #fff;
  background: #062d6f;
  font-family: var(--trident-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.65;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trident-property__advisor-form button:hover {
  background: #041e4a;
}
.trident-property__advisor-form button:disabled {
  cursor: not-allowed;
  opacity: 1;
}
.trident-property__advisor-form button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}
.trident-property__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.trident-property__related .trident-section-heading {
  gap: 20px;
  margin-bottom: 48px;
}
.trident-property__related .trident-section-heading h2 {
  margin-top: 20px;
  font-family: var(--trident-serif);
  font-weight: 500;
}
.trident-property__related .trident-text-link {
  line-height: normal;
}
.trident-property__related .trident-text-link svg {
  flex: none;
  transition: transform 400ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.trident-property__related .trident-text-link:hover svg,
.trident-property__related .trident-text-link:focus-visible svg {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .trident-property__gallery {
    height: auto;
  }
  .trident-property__gallery > .trident-property__gallery-tile {
    min-height: min(50vh, 560px);
  }
}

@media (max-width: 900px) {
  .trident-property .trident-wrap,
  .trident-property__gallery-section,
  .trident-property__body-inner {
    width: min(100% - 48px, 1320px);
  }
  .trident-property .trident-wrap {
    width: min(100%, 1320px);
    padding-inline: 24px;
  }
  .trident-property__gallery-section {
    width: min(100%, 1640px);
    padding: 0 24px;
  }
  .trident-property__gallery {
    grid-template-columns: 1fr;
  }
  .trident-property__gallery-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }
  .trident-property__gallery--two
    .trident-property__gallery-secondary
    .trident-property__gallery-tile:only-child {
    grid-row: auto;
  }
  .trident-property__lightbox-stage {
    width: min(88vw, 720px);
    height: min(68vh, 640px);
  }
  .trident-property__lightbox-nav--previous {
    left: 12px;
  }
  .trident-property__lightbox-nav--next {
    right: 12px;
  }
  .trident-property__body {
    padding: 64px 0;
  }
  .trident-property__content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trident-property__advisor {
    position: static;
  }
  .trident-property__quick-spec + .trident-property__quick-spec {
    padding-left: 16px;
  }
  .trident-property__details-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .trident-property__gallery-secondary {
    grid-template-columns: 1fr;
  }
  .trident-property__gallery > .trident-property__gallery-tile {
    min-height: 42vh;
  }
  .trident-property__lightbox-close {
    top: 14px;
    right: 14px;
  }
  .trident-property__lightbox-nav {
    width: 48px;
    height: 48px;
  }
  .trident-property__quick-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trident-property__quick-spec {
    padding: 18px 0;
  }
  .trident-property__quick-spec:nth-child(odd) {
    padding-right: 16px;
  }
  .trident-property__quick-spec:nth-child(even) {
    padding-left: 16px;
  }
  .trident-property__quick-spec:nth-child(3),
  .trident-property__quick-spec:nth-child(4) {
    border-top: 1px solid var(--trident-line-soft);
  }
  .trident-property__quick-spec:nth-child(3) {
    border-left: 0;
  }
  .trident-property__amenities-list {
    grid-template-columns: 1fr;
  }
}
