:root {
  --navy: #061727;
  --navy2: #0b2238;
  --navy3: #0f2b45;
  --gold: #d6a05a;
  --gold2: #f0c47d;
  --paper: #f7f3ec;
  --ink: #0a1522;
  --muted: #6e7884;
  --line: rgba(214, 160, 90, .32);
  --white: #fff
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65
}

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

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

.serif {
  font-family: Georgia, 'Times New Roman', serif
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 23, 39, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.nav-wrap {
  max-width: 1320px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px
}

.brand img {
  height: 74px;
  width: auto;
  display: block;
  object-fit: contain
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff
}

.nav a {
  opacity: .86
}

.nav a:hover,
.nav a.active {
  color: var(--gold2);
  opacity: 1
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: transparent;
  transition: .2s
}

.btn:hover {
  background: var(--gold);
  color: #081522
}

.btn.gold {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #081522
}

.btn.ghost {
  border: 0;
  border-bottom: 1px solid var(--gold);
  padding-left: 0;
  padding-right: 0;
  color: var(--gold2)
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, .3);
  background: transparent;
  color: #fff;
  padding: 10px 12px
}

.hero {
  background: radial-gradient(circle at 80% 20%, #193655, transparent 38%), linear-gradient(120deg, #030d18 0%, #071c31 64%, #0d2a46 100%);
  color: #fff;
  overflow: hidden
}

.hero-grid {
  max-width: 1240px;
  margin: auto;
  min-height: 680px;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 56px
}

.eyebrow {
  color: var(--gold2);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700
}

.hero h1,
.page-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .95;
  margin: 18px 0 24px
}

.gold-text {
  color: var(--gold2)
}

.hero p {
  max-width: 560px;
  color: #d8e1ea
}

.actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 34px
}

.hero-media {
  position: relative
}

.hero-media:before {
  content: "";
  position: absolute;
  inset: -48px auto auto -90px;
  width: 440px;
  height: 440px;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: .8
}

.hero-media img {
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
  aspect-ratio: 16/10;
  object-fit: cover
}

.quote-card {
  position: absolute;
  right: 28px;
  bottom: 34px;
  max-width: 310px;
  padding: 22px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(3, 13, 24, .58);
  backdrop-filter: blur(8px);
  color: #fff
}

.quote-card strong {
  color: var(--gold2)
}

.section {
  padding: 92px 24px
}

.container {
  max-width: 1140px;
  margin: auto
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px
}

.section-title h2,
.split h2,
.page-section h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  margin: 0 0 18px
}

.section-title p,
.split p,
.page-section p {
  color: #586370
}

.comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.card {
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(10, 21, 34, .08);
  padding: 32px;
  box-shadow: 0 18px 45px rgba(12, 22, 32, .05)
}

.card.highlight {
  background: #fff;
  box-shadow: 0 24px 70px rgba(12, 22, 32, .09)
}

.card h3 {
  margin: 0 0 16px
}

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

list li {
    margin: 11px 0;
    color: #aeb9c5;
}

.list li.check {
  color: #aeb9c5;
}
.list .x:before {
  content: '×';
  margin-right: 10px;
  color: #7b8794
}

.list .check:before {
  content: '✓';
  margin-right: 10px;
  color: var(--gold)
}

.dark-band {
  background: linear-gradient(120deg, #04111f, #082034);
  color: #fff;
  position: relative;
  overflow: hidden
}

.dark-band p {
  color: #d5dee8;
}

.dark-band .list li.check {
  color: #d5dee8;
}

.dark-band:after {
  content: "";
  position: absolute;
  right: -150px;
  top: -100px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 160, 90, .15), transparent 65%)
}

.method {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  position: relative
}

.step .num {
  font-family: Georgia, serif;
  font-size: 36px;
  color: var(--gold2)
}

.step h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  margin: 4px 0 12px
}

.step p {
  color: #cdd8e2;
  font-size: 14px
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.5fr;
  gap: 56px;
  align-items: center
}

.score-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .06)
}

.score-table th,
.score-table td {
  border: 1px solid rgba(10, 21, 34, .1);
  padding: 16px;
  text-align: center;
  font-size: 14px
}

.score-table th {
  font-weight: 800;
  background: #fbfaf7
}

.score-table .score {
  color: #b5792d;
  font-weight: 800
}

.longlist-feature {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  background: #061727;
  color: #fff
}

.feature-copy {
  padding: 64px 72px
}

.feature-copy h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 52px;
  margin: 0 0 18px
}

.feature-copy p {
  color: #d5dee8
}

.longlist-feature img {
  height: 100%;
  object-fit: cover
}

.footer {
  background: #04111f;
  color: #dfe8f2;
  padding: 54px 24px 30px
}

.footer-grid {
  max-width: 1140px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: 36px
}

.footer small,
.footer p,
.footer a {
  color: #aeb9c5;
  font-size: 16.5px;
  line-height: 1.75
}

.mini-logo img {
  height: 112px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px
}

.copyright {
  max-width: 1140px;
  margin: 24px auto 0;
  color: #7f8b98;
  font-size: 13px
}

.page-hero {
  background: linear-gradient(120deg, #030d18, #09223a);
  color: #fff;
  padding: 96px 24px 70px
}

.page-hero-inner {
  max-width: 1140px;
  margin: auto
}

.page-hero p {
  max-width: 720px;
  color: #d5dee8
}

.page-section {
  padding: 82px 24px
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px
}

.process-list {
  counter-reset: item;
  display: grid;
  gap: 18px
}

.process-item {
  counter-increment: item;
  background: #fff;
  border: 1px solid rgba(10, 21, 34, .08);
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  align-items: start
}

.process-item:before {
  content: counter(item, decimal-leading-zero);
  font-family: Georgia, serif;
  font-size: 34px;
  color: var(--gold)
}

.contact-panel {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .7), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(214, 160, 90, .12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(239, 236, 229, .82)),
    repeating-linear-gradient(0deg, rgba(7, 23, 39, .018) 0 1px, transparent 1px 5px);
  color: var(--ink);
  padding: 24px 26px;
  border: 1px solid rgba(214, 160, 90, .24);
  border-left: 3px solid var(--gold);
  box-shadow: 0 18px 45px rgba(12, 22, 32, .045)
}

.contact-panel p {
  color: #586370;
  margin: 0 0 14px
}

.contact-panel h2 {
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 18px
}

.contact-line {
  display: grid;
  gap: 3px;
  font-size: 15px;
  line-height: 1.55;
}

.contact-line span {
  color: #8a6a3f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-note {
  border-top: 1px solid rgba(214, 160, 90, .26);
  padding-top: 16px;
  font-size: 14.5px;
  line-height: 1.65;
}

.contact-intro {
  max-width: 720px
}

.soft-panel {
  background: #fffaf0;
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  color: #4a3b27
}

.contact-section {
  background: linear-gradient(180deg, #f7f3ec 0%, #efe8dd 100%)
}

.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: start
}

.contact-copy {
  display: grid;
  gap: 24px
}

.contact-copy h2 {
  margin-bottom: 0
}

.contact-copy p {
  margin-top: 0
}

.contact-form {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .62), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(214, 160, 90, .13), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(221, 220, 215, .82)),
    repeating-linear-gradient(0deg, rgba(7, 23, 39, .022) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(7, 23, 39, .018) 0 1px, transparent 1px 7px);
  background-blend-mode: normal, normal, normal, multiply, multiply;
  border: 1px solid rgba(214, 160, 90, .32);
  box-shadow: 0 28px 80px rgba(12, 22, 32, .11);
  padding: 38px;
  display: grid;
  gap: 18px
}

.form-row {
  display: grid;
  gap: 8px
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row label {
  color: #263545;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(10, 21, 34, .16);
  border-radius: 0;
  background: rgba(255, 255, 255, .58);
  color: var(--ink);
  font: inherit;
  padding: 13px 15px;
  outline: 0;
  transition: border-color .2s, box-shadow .2s, background .2s
}

.form-row textarea {
  resize: vertical;
  min-height: 165px
}

.form-row input:focus,
.form-row textarea:focus {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 160, 90, .18)
}

.consent-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: #586370;
  font-size: 14px;
  line-height: 1.55;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.form-submit {
  justify-self: start;
  border: 0;
  cursor: pointer
}

.legal-content {
  max-width: 760px !important;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .62), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(214, 160, 90, .11), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(230, 226, 217, .84)),
    repeating-linear-gradient(0deg, rgba(7, 23, 39, .018) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(7, 23, 39, .014) 0 1px, transparent 1px 7px);
  background-blend-mode: normal, normal, normal, multiply, multiply;
  border: 1px solid rgba(214, 160, 90, .28);
  border-left: 3px solid var(--gold);
  box-shadow: 0 24px 70px rgba(12, 22, 32, .07);
  padding: 42px 46px;
}

.legal-content h2,
.legal-content h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  color: var(--ink);
}

.legal-content h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  margin: 0 0 22px;
}

.legal-content h3 {
  font-size: 21px;
  line-height: 1.2;
  margin: 30px 0 8px;
}

.legal-content p {
  color: #586370;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 14px;
}

.legal-content ul {
  color: #586370;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 18px;
  padding-left: 22px;
}

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

.legal-content a {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  max-width: 980px;
  margin: 0 auto;
  background: rgba(3, 13, 24, .97);
  color: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-copy {
  display: grid;
  gap: 6px;
}

.cookie-copy strong {
  color: var(--gold2);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
}

.cookie-copy p {
  margin: 0;
  color: #d5dee8;
}

.cookie-copy a {
  color: var(--gold2);
  font-size: 13px;
  border-bottom: 1px solid var(--gold);
  width: fit-content;
}

.cookie-accept {
  border: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.track-section {
  background: linear-gradient(180deg, #f7f3ec 0%, #efe8dd 100%);
}

.track-intro {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 42px;
}

.track-intro h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin: 12px 0 0;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.track-card,
.reference-card,
.track-summary {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(10, 21, 34, .08);
  box-shadow: 0 18px 45px rgba(12, 22, 32, .05);
}

.track-card {
  padding: 28px;
}

.track-card h3,
.reference-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 10px;
}

.track-card p {
  margin: 0;
  color: #586370;
}

.reference-band .section-title p {
  color: #d5dee8;
}

.reference-carousel {
  max-width: 760px;
  margin: 0 auto;
}

.reference-slides {
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.reference-card {
  display: none;
  align-content: space-between;
  min-height: 300px;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(214, 160, 90, .42);
  border-left: 3px solid var(--gold);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .62), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(214, 160, 90, .13), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(221, 220, 215, .82)),
    repeating-linear-gradient(0deg, rgba(7, 23, 39, .022) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(7, 23, 39, .018) 0 1px, transparent 1px 7px);
  background-blend-mode: normal, normal, normal, multiply, multiply;
  color: var(--ink);
}

.reference-card.is-active {
  display: grid;
  animation: referenceSlideIn .42s ease;
}

.reference-carousel[data-direction="prev"] .reference-card.is-active {
  animation-name: referenceSlideInReverse;
}

.reference-card p {
  color: #34404c;
  font-size: clamp(20px, 2.15vw, 28px);
  line-height: 1.62;
  margin: 0 0 42px;
  font-family: Georgia, 'Times New Roman', serif;
}

.reference-card h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  margin-bottom: 6px;
}

.reference-card span {
  color: #6e7884;
  font-size: 14px;
  line-height: 1.45;
}

.reference-meta-img {
  width: min(100%, 210px);
  aspect-ratio: 300 / 46;
  height: auto;
  opacity: .82;
}

.reference-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}

.reference-arrow,
.reference-dot {
  border: 1px solid rgba(214, 160, 90, .55);
  background: transparent;
  color: var(--gold2);
  cursor: pointer;
}

.reference-arrow {
  width: 38px;
  height: 38px;
  font-size: 28px;
  line-height: 1;
}

.reference-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.reference-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  opacity: .52;
}

.reference-dot.is-active {
  background: var(--gold2);
  opacity: 1;
}

@keyframes referenceSlideIn {
  from {
    opacity: 0;
    transform: translateX(46px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes referenceSlideInReverse {
  from {
    opacity: 0;
    transform: translateX(-46px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.track-summary {
  padding: 34px;
  display: grid;
  gap: 28px;
}

.track-summary .list li {
  color: #34404c;
  margin: 8px 0;
}

.jobs-section {
  background: linear-gradient(180deg, #f7f3ec 0%, #efe8dd 100%);
}

.jobs-intro {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 42px;
}

.jobs-intro h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin: 12px 0 0;
}

.jobs-feed {
  display: grid;
  gap: 18px;
}

.jobs-tools {
  display: grid;
  grid-template-columns: minmax(260px, 520px) 1fr;
  gap: 22px;
  align-items: end;
  margin-bottom: 26px;
}

.jobs-search {
  display: grid;
  gap: 8px;
}

.jobs-search span {
  color: #8a6a3f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.jobs-search input {
  width: 100%;
  border: 1px solid rgba(214, 160, 90, .30);
  border-left: 3px solid var(--gold);
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .62), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(230, 226, 217, .86));
  color: var(--ink);
  font: inherit;
  padding: 15px 17px;
  outline: 0;
  box-shadow: 0 18px 45px rgba(12, 22, 32, .045);
}

.jobs-search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 160, 90, .16), 0 18px 45px rgba(12, 22, 32, .045);
}

.jobs-count {
  color: #586370;
  font-size: 14px;
  justify-self: end;
  padding-bottom: 14px;
}

.jobs-load-more {
  justify-self: center;
  margin-top: 10px;
  color: var(--navy);
  border-color: rgba(214, 160, 90, .72);
  padding-left: 24px;
  padding-right: 24px;
}

.job-card,
.jobs-empty,
.jobs-status {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .62), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(214, 160, 90, .11), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(230, 226, 217, .84)),
    repeating-linear-gradient(0deg, rgba(7, 23, 39, .018) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(7, 23, 39, .014) 0 1px, transparent 1px 7px);
  background-blend-mode: normal, normal, normal, multiply, multiply;
  border: 1px solid rgba(214, 160, 90, .28);
  border-left: 3px solid var(--gold);
  box-shadow: 0 18px 45px rgba(12, 22, 32, .055);
}

.job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 30px 34px;
}

.job-card h3,
.jobs-empty h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.12;
  margin: 6px 0 12px;
}

.job-card p,
.jobs-empty p {
  color: #586370;
  margin: 0;
}

.job-meta {
  color: #8a6a3f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.jobs-empty,
.jobs-status {
  padding: 34px;
}

.jobs-empty {
  display: grid;
  gap: 18px;
}

.jobs-empty .btn {
  justify-self: start;
}

.mobile-only {
  display: none
}

@media(max-width:900px) {
  .menu-toggle {
    display: block
  }

  .nav {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: #061727;
    padding: 22px 24px;
    flex-direction: column;
    align-items: flex-start
  }

  .nav.open {
    display: flex
  }

  .nav .btn {
    width: 100%
  }

  .hero-grid,
  .split,
  .longlist-feature,
  .two-col,
  .contact-layout {
    grid-template-columns: 1fr
  }

  .hero-grid {
    min-height: auto;
    padding-top: 48px
  }

  .hero-media:before {
    display: none
  }

  .comparison,
  .method,
  .service-grid,
  .jobs-intro,
  .track-intro,
  .track-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .jobs-intro {
    gap: 24px;
  }

  .jobs-tools {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .jobs-count {
    justify-self: start;
    padding-bottom: 0;
  }

  .job-card {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .job-card .btn {
    justify-self: start;
  }

  .feature-copy {
    padding: 44px 28px
  }

  .section {
    padding: 66px 22px
  }

  .page-section {
    padding: 60px 22px
  }

  .contact-form {
    padding: 28px
  }

  .legal-content {
    padding: 30px 24px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px;
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-accept {
    width: 100%;
  }

  .quote-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 18px
  }

  .brand img {
    height: 64px
  }

  .desktop-only {
    display: none
  }

  .mobile-only {
    display: inline-flex
  }

  .score-table {
    font-size: 12px
  }

  .score-table th,
  .score-table td {
    padding: 10px 8px
  }
}

.footer h4 {
  font-size: 17px;
  margin: 0 0 14px;
  color: #fff
}

.footer p {
  margin-top: 0
}

.footer-logo {
  display: inline-flex;
  width: min(180px, 62vw);
  margin-bottom: 22px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.site-header .btn {
  padding: 15px 24px
}

.brand {
  display: flex;
  align-items: center;
  min-width: 130px
}


/* V4 balanced refinements: rollback from oversized V3, keep readability */
.nav-wrap {
  max-width: 1260px;
  padding: 16px 24px;
  gap: 26px;
}

.brand img {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.brand {
  min-width: 126px;
}

.nav {
  gap: 25px;
  font-size: 14.25px;
  letter-spacing: .12em;
  font-weight: 700;
  white-space: nowrap;
}

.site-header .btn {
  padding: 14px 24px;
  font-size: 13px;
}

.hero-grid {
  max-width: 1240px;
  grid-template-columns: .95fr 1.22fr;
  gap: 62px;
  min-height: 660px;
  padding: 64px 24px;
}

.hero h1 {
  font-size: clamp(42px, 5.6vw, 74px);
  max-width: 600px;
}

.hero-media:before {
  opacity: .16;
  width: 410px;
  height: 410px;
  inset: -38px auto auto -70px;
}

.hero-media img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
}

.quote-card {
  right: 22px;
  bottom: 26px;
}

.footer h4 {
  font-size: 18px;
  margin: 0 0 14px;
  color: #fff;
}

.footer p,
.footer a {
  font-size: 16.5px;
  line-height: 1.75;
}

.mini-logo img {
  height: 106px;
}

@media(max-width:900px) {
  .brand img {
    height: 60px
  }

  .nav {
    white-space: normal;
    font-size: 14px
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto
  }

  .hero-media img {
    min-height: 240px
  }

  .mini-logo img {
    height: 96px
  }
}

/* V5 final layout: text-only SRES wordmark, large boardroom hero, aligned left edge */
:root {
  --site-x: clamp(32px, 5vw, 96px);
  --header-h: 92px;
}

.site-header {
  background: rgba(3, 13, 24, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.nav-wrap {
  max-width: none !important;
  width: 100%;
  min-height: var(--header-h);
  padding: 18px var(--site-x) !important;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 42px;
}

.brand.wordmark,
.footer-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  color: #fff;
  min-width: 0;
}

.brand-main {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 42px;
  letter-spacing: .18em;
  font-weight: 400;
  color: #fff;
  line-height: .9;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .35);
}

.brand-sub {
  margin-top: 9px;
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold2);
}

.nav {
  justify-content: flex-end;
  gap: clamp(22px, 2.5vw, 48px) !important;
  font-size: 14px !important;
  letter-spacing: .12em !important;
  font-weight: 800;
}

.site-header .btn {
  padding: 17px 32px !important;
  font-size: 13.5px;
  border-color: var(--gold);
}

.hero {
  background: linear-gradient(115deg, #030d18 0%, #061727 42%, #0d2945 100%);
}

.hero-grid {
  max-width: none !important;
  width: 100%;
  min-height: 610px !important;
  padding: 0 0 0 var(--site-x) !important;
  display: grid;
  grid-template-columns: minmax(390px, 39vw) 1fr !important;
  gap: 0 !important;
  align-items: stretch !important;
}

.hero-grid>div:first-child {
  align-self: center;
  padding: 58px 72px 58px 0;
}

.hero h1 {
  font-size: clamp(48px, 4.9vw, 76px) !important;
  max-width: 610px;
  line-height: .98;
  margin-top: 20px;
}

.hero p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
  color: #e0e8f1;
}

.hero-media {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-media:before,
.hero-media:after,
.quote-card {
  display: none !important;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 610px !important;
  aspect-ratio: auto !important;
  object-fit: cover;
  object-position: center;
  border: 0 !important;
  box-shadow: none !important;
}

.actions {
  gap: 34px;
}

.btn.gold {
  padding: 17px 34px;
}

.btn.ghost {
  padding-bottom: 8px;
}

.section {
  padding: 38px var(--site-x) 58px;
}

.section-title {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-title h2 {
  font-size: clamp(32px, 3vw, 44px);
}

.section-title h2:after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 14px auto 0;
}

.comparison {
  max-width: 1180px;
  margin: 0 auto;
  gap: 22px;
}

.card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 12px;
  align-items: start;
  padding: 28px 30px;
}

.card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 4px;
}

.card .list {
  grid-column: 2;
}

.card .list li {
  margin: 3px 0;
  color: #34404c;
}

.card .list li:before {
  display: none;
}

.card-icon:before {
  content: "";
  grid-row: 1 / span 2;
  width: 54px;
  height: 54px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: drop-shadow(0 10px 20px rgba(214, 160, 90, .15));
}

.card-icon.people:before {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d9942f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='19' r='8'/%3E%3Cpath d='M18 50c1-10 7-16 14-16s13 6 14 16'/%3E%3Ccircle cx='17' cy='25' r='6'/%3E%3Cpath d='M6 51c1-8 5-13 12-14'/%3E%3Ccircle cx='47' cy='25' r='6'/%3E%3Cpath d='M58 51c-1-8-5-13-12-14'/%3E%3C/g%3E%3C/svg%3E");
}

.card-icon.database:before {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d9942f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='32' cy='16' rx='17' ry='7'/%3E%3Cpath d='M15 16v32c0 4 8 7 17 7s17-3 17-7V16'/%3E%3Cpath d='M15 27c0 4 8 7 17 7s17-3 17-7'/%3E%3Cpath d='M15 38c0 4 8 7 17 7s17-3 17-7'/%3E%3C/g%3E%3C/svg%3E");
}

.card-icon.target:before {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d9942f' stroke-width='2.5' stroke-linecap='round'%3E%3Ccircle cx='32' cy='32' r='16'/%3E%3Ccircle cx='32' cy='32' r='7'/%3E%3Cpath d='M32 6v10M32 48v10M6 32h10M48 32h10'/%3E%3C/g%3E%3C/svg%3E");
}

.footer {
  padding: 42px var(--site-x) 26px !important;
}

.footer-grid {
  max-width: none !important;
  width: 100%;
  grid-template-columns: 1.35fr .95fr .95fr 1.15fr;
  gap: 64px;
  padding-bottom: 30px;
}

.footer .brand-main {
  font-size: 40px;
}

.footer .brand-sub {
  font-size: 9px;
}

.footer p,
.footer a {
  font-size: 16px !important;
  line-height: 1.72;
}

.copyright {
  max-width: none !important;
  width: 100%;
}

.page-hero-inner,
.container {
  max-width: 1180px;
}

@media(max-width:1100px) {
  :root {
    --site-x: 28px;
  }

  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #061727;
    padding: 22px var(--site-x);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px !important;
    white-space: normal;
  }

  .nav.open {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
  }

  .hero-grid>div:first-child {
    padding: 48px var(--site-x);
  }

  .hero-media img {
    min-height: 360px !important;
  }

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

  .track-intro,
  .track-grid {
    grid-template-columns: 1fr;
  }

  .card {
    grid-template-columns: 58px 1fr;
  }

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

@media(max-width:650px) {
  .brand-main {
    font-size: 34px;
  }

  .brand-sub {
    font-size: 8px;
  }

  .hero h1 {
    font-size: 44px !important;
  }

  .actions {
    gap: 18px;
  }

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

  .section {
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* V6 approved layout: text-only SRES wordmark, consistent left grid, large colorful boardroom hero */
:root {
  --site-x: clamp(54px, 6vw, 120px);
  --header-h: 92px;
}

.site-header {
  background: rgba(3, 13, 24, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.nav-wrap {
  max-width: none !important;
  width: 100%;
  min-height: var(--header-h);
  padding: 18px var(--site-x) !important;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 42px;
}

.brand.wordmark,
.footer-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  color: #fff;
  min-width: 0;
}

.brand-main {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 42px;
  letter-spacing: .18em;
  font-weight: 400;
  color: #fff;
  line-height: .88;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .35);
}

.brand-sub {
  margin-top: 9px;
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold2);
}

.nav {
  justify-content: flex-end;
  gap: clamp(22px, 2.55vw, 48px) !important;
  font-size: 14px !important;
  letter-spacing: .12em !important;
  font-weight: 800;
  white-space: nowrap;
}

.nav a.active {
  position: relative;
  color: var(--gold2);
}

.nav a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  height: 2px;
  background: var(--gold);
}

.site-header .btn {
  padding: 17px 32px !important;
  font-size: 13.5px;
  border-color: var(--gold);
}

.hero {
  background: linear-gradient(115deg, #030d18 0%, #061727 42%, #0d2945 100%);
}

.hero-grid {
  max-width: none !important;
  width: 100%;
  min-height: 610px !important;
  padding: 0 !important;
  display: grid;
  grid-template-columns: minmax(470px, 40vw) 1fr !important;
  gap: 0 !important;
  align-items: stretch !important;
}

.hero-grid>div:first-child {
  align-self: center;
  padding: 58px 70px 58px var(--site-x);
}

.hero h1 {
  font-size: clamp(48px, 4.9vw, 76px) !important;
  max-width: 610px;
  line-height: .98;
  margin-top: 20px;
}

.hero p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
  color: #e0e8f1;
}

.hero-media {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-media:before,
.hero-media:after,
.quote-card {
  display: none !important;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 610px !important;
  aspect-ratio: auto !important;
  object-fit: cover;
  object-position: center;
  border: 0 !important;
  box-shadow: none !important;
}

.actions {
  gap: 34px;
}

.btn.gold {
  padding: 17px 34px;
}

.btn.ghost {
  padding-bottom: 8px;
}

.section {
  padding: 38px var(--site-x) 58px;
}

.container {
  max-width: 1180px;
}

.section-title {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-title h2 {
  font-size: clamp(32px, 3vw, 44px);
}

.section-title h2:after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 14px auto 0;
}

.comparison {
  max-width: 1180px;
  margin: 0 auto;
  gap: 22px;
}

.card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 12px;
  align-items: start;
  padding: 28px 30px;
  background: rgba(255, 255, 255, .72);
}

.card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 4px;
}

.card .list {
  grid-column: 2;
}

.card .list li {
  margin: 3px 0;
  color: #34404c;
}

.card .list li:before {
  display: none;
}

.card:before {
  content: "";
  grid-row: 1 / span 2;
  width: 54px;
  height: 54px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: drop-shadow(0 10px 20px rgba(214, 160, 90, .15));
}

.comparison .card:nth-child(1):before {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d9942f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='19' r='8'/%3E%3Cpath d='M18 50c1-10 7-16 14-16s13 6 14 16'/%3E%3Ccircle cx='17' cy='25' r='6'/%3E%3Cpath d='M6 51c1-8 5-13 12-14'/%3E%3Ccircle cx='47' cy='25' r='6'/%3E%3Cpath d='M58 51c-1-8-5-13-12-14'/%3E%3C/g%3E%3C/svg%3E");
}

.comparison .card:nth-child(2):before {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d9942f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='32' cy='16' rx='17' ry='7'/%3E%3Cpath d='M15 16v32c0 4 8 7 17 7s17-3 17-7V16'/%3E%3Cpath d='M15 27c0 4 8 7 17 7s17-3 17-7'/%3E%3Cpath d='M15 38c0 4 8 7 17 7s17-3 17-7'/%3E%3C/g%3E%3C/svg%3E");
}

.comparison .card:nth-child(3):before {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d9942f' stroke-width='2.5' stroke-linecap='round'%3E%3Ccircle cx='32' cy='32' r='16'/%3E%3Ccircle cx='32' cy='32' r='7'/%3E%3Cpath d='M32 6v10M32 48v10M6 32h10M48 32h10'/%3E%3C/g%3E%3C/svg%3E");
}

.footer {
  padding: 42px var(--site-x) 26px !important;
}

.footer-grid {
  max-width: none !important;
  width: 100%;
  grid-template-columns: 1.35fr .95fr .95fr 1.15fr;
  gap: 64px;
  padding-bottom: 30px;
}

.footer .brand-main {
  font-size: 40px;
}

.footer .brand-sub {
  font-size: 9px;
}

.footer p,
.footer a {
  font-size: 16px !important;
  line-height: 1.72;
}

.copyright {
  max-width: none !important;
  width: 100%;
}

/* Page hero and inner pages use same grid */
.page-hero,
.page-section {
  padding-left: var(--site-x);
  padding-right: var(--site-x);
}

.page-hero-inner,
.page-section .container {
  max-width: 1180px;
}

@media(max-width:1050px) {
  .nav-wrap {
    grid-template-columns: 170px 1fr;
  }

  .nav {
    gap: 18px !important;
    font-size: 12.5px !important
  }

  .site-header .btn {
    padding: 14px 18px !important
  }

  .hero-grid {
    grid-template-columns: 1fr !important
  }

  .hero-grid>div:first-child {
    padding: 48px var(--site-x)
  }

  .hero-media img {
    min-height: 360px !important
  }

  .hero-media {
    min-height: 360px
  }

  .comparison {
    grid-template-columns: 1fr
  }

  .track-intro,
  .track-grid {
    grid-template-columns: 1fr
  }

  .card {
    grid-template-columns: 60px 1fr
  }
}

@media(max-width:900px) {
  .nav-wrap {
    display: flex;
  }

  .brand-main {
    font-size: 34px
  }

  .brand-sub {
    font-size: 8px
  }

  .nav {
    top: var(--header-h);
    white-space: normal;
    font-size: 14px !important
  }

  .nav a.active:after {
    display: none
  }

  .hero-grid>div:first-child {
    padding: 42px 24px
  }

  .section,
  .footer,
  .page-hero,
  .page-section {
    padding-left: 24px !important;
    padding-right: 24px !important
  }

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

  .footer .brand-main {
    font-size: 36px
  }
}
.approach-accordion-section {
  background: #f4f0ea;
  padding: 90px 24px;
}

.approach-accordion-section .container {
  max-width: 1140px;
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading .eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
}

.section-heading h2 {
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  margin: 12px 0 16px;
  color: #071727;
}

.section-heading p {
  color: #536171;
  font-size: 18px;
  line-height: 1.7;
}

.accordion {
  display: grid;
  gap: 18px;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid rgba(7, 23, 39, 0.08);
  box-shadow: 0 18px 45px rgba(7, 23, 39, 0.06);
  transition: all 0.25s ease;
}

.accordion-item:hover {
  border-color: rgba(214, 160, 90, 0.55);
  box-shadow: 0 22px 55px rgba(7, 23, 39, 0.1);
}

.accordion-item summary {
  display: grid;
  grid-template-columns: 70px 1fr 32px;
  align-items: center;
  gap: 24px;
  padding: 30px 34px;
  cursor: pointer;
  list-style: none;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.step-number {
  font-family: Georgia, serif;
  font-size: 30px;
  color: var(--gold);
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: #071727;
}

.step-arrow {
  font-size: 28px;
  color: var(--gold);
  text-align: right;
  transition: transform 0.2s ease;
}

.accordion-item[open] .step-arrow {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 34px 34px 128px;
  max-width: 860px;
  color: #536171;
  font-size: 17px;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 36px;
  }

  .accordion-item summary {
    grid-template-columns: 48px 1fr 24px;
    gap: 16px;
    padding: 24px;
  }

  .step-number {
    font-size: 24px;
  }

  .step-title {
    font-size: 18px;
  }

  .accordion-content {
    padding: 0 24px 28px 88px;
    font-size: 16px;
  }
}

/* SRES job detail */
.job-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.job-detail-main,
.job-side-card {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .62), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(214, 160, 90, .11), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(230, 226, 217, .86)),
    repeating-linear-gradient(0deg, rgba(7, 23, 39, .018) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(7, 23, 39, .014) 0 1px, transparent 1px 7px);
  background-blend-mode: normal, normal, normal, multiply, multiply;
  border: 1px solid rgba(214, 160, 90, .28);
  box-shadow: 0 24px 70px rgba(12, 22, 32, .07);
}

.job-detail-main {
  border-left: 3px solid var(--gold);
  padding: clamp(30px, 4vw, 54px);
}

.job-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: #8a6a3f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(214, 160, 90, .5);
}

.job-detail-main h2 {
  max-width: 760px;
  margin: 10px 0 28px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  color: var(--ink);
}

.job-description {
  max-width: 790px;
}

.job-description p {
  color: #4f5b68;
  font-size: 17px;
  line-height: 1.78;
  margin: 0 0 18px;
}

.job-detail-side {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  display: grid;
  gap: 18px;
}

.job-side-card {
  padding: 28px;
}

.job-side-card h3 {
  margin: 10px 0 12px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink);
}

.job-side-card p {
  color: #586370;
  margin: 0 0 22px;
}

.job-side-card .btn {
  width: 100%;
}

.job-side-card.muted {
  box-shadow: none;
  padding: 24px;
}

.job-side-card.muted h3 {
  font-size: 22px;
}

.job-contact-card {
  padding: 24px;
}

.job-contact-person {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
}

.job-contact-person img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(214, 160, 90, .45);
}

.job-contact-person h3 {
  margin: 0 0 4px;
  font-size: 22px;
}

.job-contact-person p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.job-contact-person a {
  color: #586370;
  border-bottom: 1px solid rgba(214, 160, 90, .45);
}

@media(max-width:900px) {
  .job-detail-layout {
    grid-template-columns: 1fr;
  }

  .job-detail-side {
    position: static;
  }
}
