:root {
  --ink: #101820;
  --ink-soft: #52606d;
  --navy: #071521;
  --navy-2: #0d2234;
  --charcoal: #151a1f;
  --slate: #253241;
  --teal: #4fb8aa;
  --teal-dim: #1f6f6b;
  --gold: #cba86a;
  --paper: #f4efe6;
  --paper-2: #e7dfd2;
  --mist: #d6ddd9;
  --line: rgba(244, 239, 230, 0.14);
  --dark-line: rgba(7, 21, 33, 0.14);
  --shadow: 0 28px 70px rgba(3, 9, 15, 0.38);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 10% -10%, rgba(79, 184, 170, 0.18), transparent 34rem),
    linear-gradient(180deg, var(--navy) 0%, #111820 48%, #0b1118 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000, transparent 88%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 76px);
  background: rgba(7, 21, 33, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, var(--paper), var(--gold));
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(203, 168, 106, 0.16);
  font-size: 0.84rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 30px);
  color: rgba(244, 239, 230, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--teal);
}

.nav-cta {
  padding: 9px 15px;
  color: var(--paper);
  border: 1px solid rgba(79, 184, 170, 0.45);
  border-radius: var(--radius);
  background: rgba(79, 184, 170, 0.08);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.88fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 75px);
  overflow: hidden;
  padding: clamp(64px, 9vw, 124px) clamp(20px, 5vw, 76px) 58px;
  background:
    linear-gradient(115deg, rgba(7, 21, 33, 0.98) 0%, rgba(12, 28, 42, 0.93) 50%, rgba(23, 27, 31, 0.96) 100%),
    repeating-linear-gradient(135deg, rgba(244, 239, 230, 0.06) 0 1px, transparent 1px 18px);
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -18vw;
  width: 52vw;
  height: 52vw;
  min-width: 540px;
  min-height: 540px;
  content: "";
  background: radial-gradient(circle, rgba(203, 168, 106, 0.16), transparent 68%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(5px);
  pointer-events: none;
}

.hero-orb-one {
  top: 11%;
  left: 48%;
  width: 180px;
  height: 180px;
  background: rgba(79, 184, 170, 0.14);
}

.hero-orb-two {
  right: 18%;
  bottom: 20%;
  width: 120px;
  height: 120px;
  background: rgba(203, 168, 106, 0.13);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 810px;
  margin-bottom: 24px;
  color: var(--paper);
  font-size: clamp(3.8rem, 8vw, 8rem);
  line-height: 0.88;
}

.hero-subtitle {
  max-width: 700px;
  color: rgba(244, 239, 230, 0.78);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--paper), var(--gold));
  box-shadow: 0 18px 42px rgba(203, 168, 106, 0.18);
}

.secondary {
  color: var(--paper);
  background: rgba(244, 239, 230, 0.06);
  border: 1px solid rgba(244, 239, 230, 0.22);
}

.secondary:hover {
  border-color: rgba(79, 184, 170, 0.7);
}

.small-note {
  max-width: 660px;
  color: rgba(244, 239, 230, 0.62);
  font-size: 0.94rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.workflow-rail,
.process-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  color: rgba(244, 239, 230, 0.68);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.workflow-rail i,
.process-flow i {
  height: 1px;
  background: linear-gradient(90deg, var(--teal), rgba(203, 168, 106, 0.75));
}

.desk-scene {
  position: relative;
  min-height: 545px;
  padding: 38px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(244, 239, 230, 0.12), rgba(244, 239, 230, 0.04)),
    radial-gradient(circle at 20% 20%, rgba(79, 184, 170, 0.18), transparent 22rem);
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.desk-scene::before {
  position: absolute;
  inset: 22px;
  content: "";
  border: 1px solid rgba(244, 239, 230, 0.08);
  border-radius: var(--radius);
}

.doc-stack {
  position: relative;
  height: 390px;
}

.paper {
  position: absolute;
  display: grid;
  gap: 13px;
  width: min(82%, 360px);
  min-height: 235px;
  padding: 26px;
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.98), rgba(232, 224, 211, 0.98)),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(7, 21, 33, 0.05) 29px 30px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.paper-a {
  top: 24px;
  left: 18px;
  transform: rotate(-7deg);
}

.paper-b {
  top: 98px;
  right: 8px;
  transform: rotate(5deg);
}

.paper-c {
  top: 190px;
  left: 64px;
  transform: rotate(-2deg);
}

.paper-tab {
  width: 70px;
  height: 9px;
  background: var(--teal);
  border-radius: 999px;
}

.paper strong {
  font-size: 1.02rem;
}

.paper em {
  display: block;
  width: 100%;
  height: 9px;
  background: rgba(7, 21, 33, 0.12);
  border-radius: 999px;
}

.paper em:nth-of-type(2) {
  width: 72%;
}

.paper em:nth-of-type(3) {
  width: 48%;
}

.packet-card {
  position: relative;
  z-index: 2;
  margin-left: auto;
  max-width: 330px;
  padding: 20px;
  color: var(--paper);
  background: rgba(7, 21, 33, 0.86);
  border: 1px solid rgba(79, 184, 170, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.packet-card p {
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.packet-card strong {
  display: block;
  color: rgba(244, 239, 230, 0.88);
  line-height: 1.35;
}

.status-dot {
  float: right;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(203, 168, 106, 0.12);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #101820;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 26px clamp(20px, 5vw, 76px);
  border-right: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--paper);
  font-size: 1.02rem;
}

.trust-strip span {
  color: rgba(244, 239, 230, 0.62);
  font-size: 0.92rem;
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 76px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 86px);
  align-items: start;
  margin-bottom: 42px;
}

.section h2 {
  max-width: 890px;
  color: var(--paper);
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.98;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(21, 26, 31, 0.96), rgba(15, 21, 27, 0.98)),
    radial-gradient(circle at 84% 20%, rgba(79, 184, 170, 0.14), transparent 30rem);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  overflow: hidden;
  color: var(--navy);
  background: linear-gradient(145deg, var(--paper), var(--paper-2));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.service-card::after {
  position: absolute;
  right: -36px;
  bottom: -44px;
  width: 150px;
  height: 150px;
  content: "";
  background: radial-gradient(circle, rgba(79, 184, 170, 0.26), transparent 68%);
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  transform: translateY(28px);
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  place-items: center;
  background: #122436;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(244, 239, 230, 0.18);
}

.icon::before,
.icon::after {
  content: "";
  display: block;
}

.document-icon::before {
  width: 20px;
  height: 25px;
  border: 2px solid var(--teal);
  border-radius: 3px;
  box-shadow: 7px 7px 0 rgba(203, 168, 106, 0.55);
}

.intake-icon::before {
  width: 25px;
  height: 17px;
  border: 2px solid var(--teal);
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  border-bottom: 0;
}

.cleanup-icon::before {
  width: 25px;
  height: 25px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  box-shadow: 12px 12px 0 -8px var(--gold);
}

.packet-icon::before {
  width: 27px;
  height: 19px;
  border: 2px solid var(--teal);
  border-radius: 4px;
  box-shadow: 0 -7px 0 -3px rgba(203, 168, 106, 0.9);
}

.service-card h3,
.step h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.2;
}

.service-card p,
.step p,
.confidentiality p,
.contact p {
  color: var(--ink-soft);
}

.process-section {
  background:
    linear-gradient(180deg, #111820, #0b1219),
    radial-gradient(circle at 12% 0%, rgba(203, 168, 106, 0.12), transparent 28rem);
}

.process-flow {
  max-width: 620px;
  margin: -8px 0 36px auto;
}

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

.step {
  padding: 30px;
  color: var(--navy);
  background: linear-gradient(145deg, rgba(244, 239, 230, 0.96), rgba(214, 221, 217, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.step span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--teal-dim);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.confidentiality {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
  background:
    linear-gradient(115deg, rgba(244, 239, 230, 0.95), rgba(221, 216, 205, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(7, 21, 33, 0.05) 45px 46px);
}

.confidentiality .eyebrow {
  color: var(--teal-dim);
}

.confidentiality h2 {
  color: var(--navy);
}

.confidentiality-panel {
  padding: 32px;
  background: rgba(255, 252, 244, 0.62);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(7, 21, 33, 0.12);
}

.confidentiality p {
  font-size: 1.08rem;
}

.disclaimer {
  margin-top: 24px;
  padding: 20px;
  color: var(--navy) !important;
  background: rgba(79, 184, 170, 0.12);
  border: 1px solid rgba(31, 111, 107, 0.28);
  border-left: 4px solid var(--teal-dim);
  border-radius: var(--radius);
  font-weight: 850;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7, 21, 33, 0.98), rgba(17, 24, 32, 0.96)),
    radial-gradient(circle at 86% 24%, rgba(79, 184, 170, 0.18), transparent 28rem);
  border-top: 1px solid var(--line);
}

.contact h2,
.contact p {
  color: var(--paper);
}

.contact-copy > p:last-child {
  max-width: 760px;
  color: rgba(244, 239, 230, 0.72);
  font-size: 1.08rem;
}

.contact-box {
  padding: 30px;
  background: linear-gradient(145deg, rgba(244, 239, 230, 0.11), rgba(244, 239, 230, 0.05));
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.email-link {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--paper);
  font-size: clamp(1.28rem, 3vw, 2.15rem);
  font-weight: 850;
  overflow-wrap: anywhere;
  text-decoration-color: var(--teal);
  text-underline-offset: 8px;
}

.contact-box p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(244, 239, 230, 0.68);
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 76px);
  color: rgba(244, 239, 230, 0.64);
  background: #080f16;
  border-top: 1px solid var(--line);
}

footer strong {
  color: var(--paper);
}

footer a {
  color: var(--teal);
  text-decoration: none;
}

@media (max-width: 940px) {
  .site-header,
  footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero,
  .confidentiality,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .trust-strip,
  .steps,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    transform: none;
  }

  .process-flow {
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .nav {
    gap: 10px;
    font-size: 0.84rem;
  }

  .nav a {
    padding: 7px 0;
  }

  .nav-cta {
    padding: 7px 10px !important;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.7rem);
  }

  .desk-scene {
    min-height: 470px;
    padding: 24px;
  }

  .paper {
    width: 88%;
    min-height: 205px;
    padding: 22px;
  }

  .paper-b {
    right: -2px;
  }

  .paper-c {
    left: 34px;
  }

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

  .confidentiality-panel,
  .service-card,
  .step,
  .contact-box {
    padding: 22px;
  }
}
