:root {
  --ink: #14211f;
  --muted: #596966;
  --line: #dce4de;
  --paper: #f7f6f0;
  --white: #ffffff;
  --harbour: #0b615e;
  --harbour-dark: #0d3432;
  --cedar: #496a45;
  --copper: #b76845;
  --sun: #f1c35d;
  --shadow: 0 18px 50px rgba(14, 33, 30, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 64px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
  font-size: 15px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  color: var(--white);
  background: var(--harbour-dark);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 30, 29, 0.86) 0%, rgba(8, 30, 29, 0.68) 34%, rgba(8, 30, 29, 0.22) 64%, rgba(8, 30, 29, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 30, 29, 0.38) 0%, rgba(8, 30, 29, 0.03) 46%, rgba(8, 30, 29, 0.66) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  padding: clamp(96px, 14vh, 150px) 0 30px;
  margin-left: clamp(20px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.16;
  font-weight: 720;
}

.hero-detail {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.hero-actions,
.section-heading,
.section-copy,
.contact-section {
  display: flex;
  gap: 16px;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 780;
  line-height: 1;
  white-space: nowrap;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button.primary {
  color: var(--ink);
  background: var(--sun);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
}

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

.signal-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.signal-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--harbour-dark);
  background: var(--line);
}

.signal-inner p {
  min-height: 82px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: var(--white);
  text-align: center;
  font-weight: 760;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(68px, 9vw, 112px) clamp(20px, 4vw, 40px);
}

.intro-section,
.fit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.intro-text p,
.fit-list li,
.service-card p,
.step p,
.proof-item span,
.contact-section p {
  color: var(--muted);
  font-size: 16px;
}

.section-heading {
  flex-direction: column;
  max-width: 820px;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 285px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(20, 33, 31, 0.06);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--harbour);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.approach-section {
  max-width: none;
  background: var(--harbour-dark);
  color: var(--white);
}

.approach-section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.approach-section .section-heading {
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.2);
}

.step {
  min-height: 260px;
  padding: 26px;
  background: #113f3c;
}

.step-number {
  display: block;
  margin-bottom: 42px;
  color: var(--sun);
  font-weight: 820;
}

.step p {
  color: rgba(255, 255, 255, 0.76);
}

.fit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fit-list ul {
  margin: 0;
  padding-left: 20px;
}

.fit-list li + li {
  margin-top: 10px;
}

.proof-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 0;
}

.proof-item {
  min-height: 160px;
  padding: 28px;
  border-top: 4px solid var(--copper);
  background: var(--white);
}

.proof-item strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.assessment-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px clamp(20px, 4vw, 40px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.assessment-band > div {
  max-width: 760px;
}

.assessment-band h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.assessment-band p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto 72px;
  padding: 42px clamp(20px, 4vw, 40px);
  color: var(--white);
  background: var(--cedar);
}

.contact-section h2 {
  max-width: 720px;
}

.contact-section p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.contact-button {
  color: var(--ink);
  background: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
  font-size: 14px;
}

.site-footer a {
  font-weight: 750;
}

.plain-page {
  background: var(--paper);
}

.plain-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: var(--harbour-dark);
}

.plain-brand .brand-mark {
  border-color: rgba(255, 255, 255, 0.5);
}

.plain-back {
  font-weight: 750;
}

.plain-nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 750;
}

.plain-main {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.plain-main h1 {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
}

.plain-main h2 {
  margin-top: 42px;
  font-size: clamp(24px, 3vw, 34px);
}

.plain-main p {
  color: var(--muted);
  font-size: 17px;
}

.plain-action {
  margin-top: 18px;
}

.services-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0 72px;
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.services-hero h1 {
  color: var(--ink);
  font-size: clamp(42px, 5.6vw, 72px);
}

.services-hero p:not(.eyebrow),
.offer-detail p,
.offer-bullets li,
.offer-next p {
  color: var(--muted);
  font-size: 16px;
}

.offer-list {
  display: grid;
  gap: 18px;
}

.offer-detail {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(20, 33, 31, 0.06);
}

.offer-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: var(--harbour);
}

.offer-icon svg {
  width: 25px;
  height: 25px;
}

.offer-meta {
  margin-bottom: 10px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.offer-detail h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 38px);
}

.offer-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.offer-bullets li {
  min-height: 96px;
  padding: 14px;
  border-left: 4px solid var(--sun);
  background: var(--paper);
}

.offer-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 36px;
  padding: clamp(28px, 4vw, 42px);
  color: var(--white);
  background: var(--cedar);
}

.offer-next h2 {
  max-width: 700px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.offer-next p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.assessment-page {
  background: var(--paper);
}

.assessment-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) 0;
}

.assessment-intro {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 280px;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.assessment-intro h1 {
  color: var(--ink);
  font-size: clamp(40px, 5.4vw, 76px);
}

.assessment-intro p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.score-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 210px;
  padding: 26px;
  color: var(--white);
  background: var(--harbour-dark);
}

.score-label {
  margin-bottom: 12px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.score-panel strong {
  margin-bottom: 8px;
  font-size: 42px;
  line-height: 1;
}

.score-panel span:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 720;
}

.assessment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 24px;
  align-items: start;
}

.assessment-form,
.recommendation-panel {
  min-width: 0;
}

.context-panel,
.risk-panel,
.question-panel,
.recommendation-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.context-panel,
.risk-panel,
.question-panel {
  margin: 0 0 16px;
  padding: 22px;
}

.context-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.context-panel legend,
.risk-panel legend,
.question-panel legend {
  padding: 0 8px;
  font-weight: 820;
}

.context-panel label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 740;
}

.context-panel select {
  width: 100%;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.question-list {
  display: grid;
  gap: 16px;
}

.question-panel legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.question-panel legend small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
}

.score-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.score-option {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
}

.score-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.score-option span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-weight: 820;
}

.score-option small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.score-option:has(input:checked) {
  border-color: var(--harbour);
  background: #eef7f3;
}

.score-option:has(input:checked) span {
  color: var(--white);
  border-color: var(--harbour);
  background: var(--harbour);
}

.risk-panel {
  display: grid;
  gap: 10px;
}

.check-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 650;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--harbour);
}

.recommendation-panel {
  position: sticky;
  top: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.recommendation-panel h2 {
  font-size: 30px;
}

.recommendation-panel p {
  color: var(--muted);
}

.summary-box {
  margin: 24px 0;
  padding: 18px;
  border-left: 4px solid var(--copper);
  background: var(--paper);
}

.summary-box strong {
  display: block;
  margin-bottom: 8px;
}

.summary-box p {
  margin-bottom: 0;
  font-size: 14px;
}

.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.secondary-dark {
  color: var(--white);
  background: var(--harbour-dark);
}

.assessment-contact {
  width: 100%;
  margin-bottom: 16px;
}

.assessment-note {
  margin: 0;
  font-size: 13px;
}

@media print {
  .plain-header,
  .site-footer,
  .context-panel,
  .question-list,
  .risk-panel,
  .result-actions,
  .assessment-contact,
  .assessment-note {
    display: none;
  }

  .assessment-shell {
    width: auto;
    padding: 0;
  }

  .assessment-intro,
  .assessment-grid {
    display: block;
  }

  .score-panel,
  .recommendation-panel {
    color: #000;
    background: #fff;
    box-shadow: none;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .signal-inner,
  .service-grid,
  .steps,
  .proof-section,
  .assessment-grid,
  .assessment-intro {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-section,
  .fit-section,
  .contact-section,
  .assessment-band,
  .services-hero,
  .offer-next {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .offer-actions {
    justify-content: flex-start;
  }

  .recommendation-panel {
    position: static;
  }

  .score-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 18px 18px;
  }

  .brand {
    font-size: 15px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 30, 29, 0.9) 0%, rgba(8, 30, 29, 0.76) 52%, rgba(8, 30, 29, 0.28) 100%),
      linear-gradient(180deg, rgba(8, 30, 29, 0.32) 0%, rgba(8, 30, 29, 0.18) 45%, rgba(8, 30, 29, 0.72) 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-top: 124px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: 47px;
  }

  .hero-copy {
    font-size: 24px;
  }

  .hero-detail,
  .intro-text p,
  .fit-list li,
  .service-card p,
  .step p,
  .proof-item span,
  .contact-section p {
    font-size: 15px;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .signal-inner,
  .service-grid,
  .steps,
  .fit-list,
  .proof-section,
  .offer-detail,
  .offer-bullets,
  .context-panel,
  .score-options,
  .result-actions {
    grid-template-columns: 1fr;
  }

  .plain-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .plain-nav {
    width: 100%;
    justify-content: space-between;
  }

  .offer-actions {
    width: 100%;
  }

  .assessment-shell {
    width: calc(100% - 28px);
  }

  .score-option {
    min-height: auto;
  }

  .offer-bullets li {
    min-height: auto;
  }

  .signal-inner p {
    min-height: 64px;
  }

  .service-card,
  .step,
  .proof-item {
    min-height: auto;
  }

  .contact-section {
    margin-bottom: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
