:root {
  --ink: #1a2740;
  --ink-2: #22304a;
  --muted: #6b6758;
  --line: #e6e2d6;
  --paper: #fbf8f1;
  --white: #ffffff;
  --navy: #1a2740;
  --navy-2: #22304a;
  --harbour: #1f5f86;
  --harbour-soft: #a7c8dd;
  --gold: #c49a52;
  --gold-dark: #a57c3b;
  --wash: #f4efe2;
  --stone: #a6a192;
  --shadow: 0 26px 60px rgba(26, 39, 64, 0.12);
  --radius: 6px;
  --max: 1280px;
  --gutter: clamp(1.5rem, 4vw, 2.5rem);
  --serif: "Bodoni 72", Didot, "Playfair Display", Georgia, "Times New Roman", serif;
  --body: Inter, "Avenir Next", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --accent-font: "Reem Kufi", var(--body);
  --ease-sail: cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
  font-family: "Reem Kufi";
  src: url("../fonts/ReemKufi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.42rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  transition: background 280ms ease, border-color 280ms ease, backdrop-filter 280ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: rgba(26, 39, 64, 0.12);
  background: rgba(251, 248, 241, 0.88);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: padding 280ms ease;
  position: relative;
}

.site-header.is-scrolled .nav-wrap {
  padding-top: 0.68rem;
  padding-bottom: 0.68rem;
}

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

.brand img {
  width: 178px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.96;
  transition: filter 280ms ease, opacity 280ms ease, width 280ms ease;
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.site-header.is-scrolled .brand img {
  width: 158px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  border-color: var(--line);
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.55rem);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 180ms ease;
}

.site-header.is-scrolled .site-nav a,
.site-header.is-open .site-nav a {
  color: var(--ink-2);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a[aria-current="page"],
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a[aria-current="page"] {
  color: var(--harbour);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.84rem 1.35rem;
  border-radius: 4px;
  border: 1px solid transparent;
  background: var(--navy);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-cta {
  min-height: 44px;
  padding: 0.76rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy) !important;
}

.nav-portal {
  min-height: 40px;
  padding: 0.64rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.88) !important;
}

.site-header.is-scrolled .nav-portal,
.site-header.is-open .nav-portal {
  border-color: rgba(26, 39, 64, 0.2);
  color: var(--ink-2) !important;
}

.button:hover,
.nav-cta:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
}

.nav-portal:hover,
.site-header.is-scrolled .nav-portal:hover,
.site-header.is-open .nav-portal:hover {
  border-color: var(--harbour);
  background: rgba(31, 95, 134, 0.08);
  color: var(--harbour) !important;
}

.nav-cta:hover {
  color: var(--white) !important;
}

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

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

.button.light {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

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

.button.outline {
  background: transparent;
  border-color: rgba(16, 35, 63, 0.22);
  color: var(--ink);
}

.button.outline:hover {
  border-color: var(--harbour);
  background: rgba(31, 95, 134, 0.08);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: 72px;
  background:
    radial-gradient(90% 65px at 12% 100%, var(--paper) 46%, transparent 47%),
    radial-gradient(92% 70px at 52% 100%, rgba(251, 248, 241, 0.74) 47%, transparent 48%),
    radial-gradient(90% 64px at 88% 100%, rgba(251, 248, 241, 0.54) 46%, transparent 47%);
  opacity: 0.96;
  pointer-events: none;
}

.page-hero {
  min-height: 620px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(26, 39, 64, 0.82), rgba(26, 39, 64, 0.3) 48%, rgba(26, 39, 64, 0.58)),
    linear-gradient(90deg, rgba(26, 39, 64, 0.28), rgba(26, 39, 64, 0.06) 45%, rgba(26, 39, 64, 0.18));
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: hero-drift 18s var(--ease-sail, ease) forwards;
}

@keyframes hero-drift {
  from { transform: scale(1.065); }
  to { transform: scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 8rem var(--gutter) 5rem;
}

.hero-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.15rem;
  color: var(--harbour);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 54px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.hero .eyebrow,
.dark .eyebrow,
.cta-band .eyebrow,
.site-footer .eyebrow {
  color: var(--harbour-soft);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.brand img,
.footer-logo {
  image-rendering: auto;
}

.hero h1,
.hero h2,
.dark h2,
.dark h3,
.cta-band h2,
.site-footer h2 {
  color: var(--white);
}

h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 5.8vw, 5.9rem);
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 5.6vw, 5.7rem);
}

h2 {
  font-size: clamp(2.35rem, 4.2vw, 4.35rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  font-style: italic;
  line-height: 1.5;
}

.section-head > p:not(.eyebrow),
.split-copy > p:not(.eyebrow),
.copy-block p,
.form-intro p {
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.hero .button {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
}

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

.hero .button.secondary {
  background: transparent;
  color: var(--white);
}

.trust-line {
  margin-top: 1.45rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: clamp(5.25rem, 8vw, 7.5rem) var(--gutter);
}

.section.tight {
  padding-top: clamp(4.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(4.5rem, 6vw, 5.5rem);
}

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

.section-head {
  max-width: 880px;
  margin-bottom: 3.1rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p,
.copy-block p,
.card p,
.split-copy p,
.form-intro p {
  color: var(--muted);
  font-size: 1.02rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.32);
  padding: clamp(1.35rem, 2.2vw, 1.8rem);
}

.card h3 {
  margin-bottom: 0.85rem;
}

.card .button {
  margin-top: 0.6rem;
}

.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.proof-item {
  border-left: 1px solid var(--line);
  padding-left: 1.15rem;
}

.proof-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.proof-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.feature-card {
  min-height: 430px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  color: var(--white);
  background: var(--navy);
  border: 0;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26, 39, 64, 0.92), rgba(26, 39, 64, 0.16) 62%);
  z-index: 1;
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 7000ms ease;
}

.feature-card:hover img {
  transform: scale(1.07);
}

.feature-card > div {
  position: relative;
  z-index: 2;
}

.feature-card h3,
.feature-card p {
  color: var(--white);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.82);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: none;
}

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

.check-list {
  columns: 2;
  column-gap: 3rem;
  color: var(--ink-2);
  font-weight: 650;
  list-style: none;
  padding-left: 0;
  border-top: 1px solid var(--line);
}

.check-list li {
  break-inside: avoid;
  margin: 0;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.dark {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.dark .card {
  background: rgba(255, 255, 255, 0.045);
}

.dark .section-head p,
.dark p,
.dark li {
  color: rgba(255, 255, 255, 0.78);
}

.process {
  counter-reset: process;
}

.process .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.process .card h3 {
  color: var(--white);
}

.process .card::before {
  counter-increment: process;
  content: "0" counter(process);
  display: block;
  margin-bottom: 1rem;
  color: var(--harbour-soft);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.package {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: clamp(1.6rem, 2.6vw, 2.1rem);
}

.package.highlight {
  border-color: rgba(196, 154, 82, 0.72);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: none;
}

.package-label {
  color: var(--harbour);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
}

.service-table th,
.service-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.service-table th {
  color: var(--ink);
  background: rgba(244, 239, 226, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-table tr:last-child td {
  border-bottom: 0;
}

.report-example {
  border-left: 1px solid var(--gold);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  list-style: none;
}

.tag-list li {
  margin: 0;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.34);
  color: var(--ink-2);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.band {
  background: var(--wash);
}

.cta-band {
  padding: clamp(5rem, 8vw, 7rem) var(--gutter);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(26, 39, 64, 0.98), rgba(34, 48, 74, 0.92)),
    var(--navy);
}

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-inner p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 2rem;
  align-items: start;
}

form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.44);
  box-shadow: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.48rem;
  color: var(--stone);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.74);
  padding: 0.92rem 0.95rem;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--harbour);
  box-shadow: 0 0 0 3px rgba(31, 95, 134, 0.08);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-card {
  margin-top: 1rem;
  background: var(--wash);
}

.site-footer {
  padding: 5rem var(--gutter) 2rem;
  color: rgba(255, 255, 255, 0.76);
  background: #111d31;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 48px;
  background:
    radial-gradient(80% 44px at 18% 0, var(--paper) 46%, transparent 47%),
    radial-gradient(70% 42px at 58% 0, var(--paper) 46%, transparent 47%),
    radial-gradient(70% 42px at 92% 0, var(--paper) 46%, transparent 47%);
  opacity: 0.9;
}

.site-footer h2 {
  margin-bottom: 0.9rem;
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 210px;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

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

.footer-bottom {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem var(--gutter) 1.25rem;
    border-bottom: 1px solid rgba(26, 39, 64, 0.1);
    background: var(--paper);
    box-shadow: 0 18px 30px rgba(26, 39, 64, 0.12);
  }

  .site-header.is-open .site-nav a {
    color: var(--ink-2);
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-portal {
    width: 100%;
    margin-top: 0.45rem;
    border-color: var(--line);
    color: var(--ink-2) !important;
    text-align: center;
  }

  .grid.three,
  .grid.four,
  .grid.five,
  .proof-grid,
  .split,
  .split.reverse,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-media img {
    min-height: 360px;
  }

  .cta-inner {
    display: grid;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 148px;
  }

  .hero,
  .page-hero {
    min-height: 650px;
  }

  .hero::after {
    height: 44px;
  }

  .hero-content {
    padding: 7rem var(--gutter) 4rem;
  }

  .section {
    padding: 4.8rem var(--gutter);
  }

  .section.tight {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .grid.two,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .check-list {
    columns: 1;
  }

  .proof-item,
  .proof-item:first-child {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 0.8rem;
  }

  .proof-item:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .service-table,
  .service-table tbody,
  .service-table tr,
  .service-table td {
    display: block;
  }

  .service-table thead {
    display: none;
  }

  .service-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.25rem;
    color: var(--harbour);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

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

  h1 {
    font-size: clamp(2.85rem, 15vw, 4.35rem);
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.85rem);
  }
}
