:root {
  --navy:#071a36;
  --navy-soft:#12365f;
  --gold:#c99d51;
  --gold-dark:#87622c;
  --paper:#fffdf8;
  --canvas:#f1eadc;
  --line:#d9d0c1;
  --muted:#536174;
  --white:#fff;
  --serif:Georgia,'Times New Roman',serif;
  --sans:system-ui,-apple-system,'Segoe UI',sans-serif;
  --radius:14px;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:110px;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--navy);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.7;
}
button,input,select,textarea {
  font:inherit;
}
button,a,input,select,textarea {
  -webkit-tap-highlight-color:transparent;
}
button {
  cursor:pointer;
}
a {
  color:inherit;
  text-underline-offset:5px;
}
img {
  display:block;
  max-width:100%;
  height:auto;
}
button {
  color:inherit;
}
h1,h2,h3,p,figure {
  margin:0;
}
h1,h2,h3 {
  font-weight:400;
}
h1,h2 {
  font-family:var(--serif);
  letter-spacing:-.045em;
  line-height:1.08;
  text-wrap:balance;
}
h1 {
  font-size:clamp(3rem,4.65vw,4.35rem);
}
h2 {
  font-size:clamp(2.35rem,3.35vw,3.5rem);
}
h3 {
  font-size:1.1rem;
  line-height:1.4;
  font-weight:600;
}
em {
  font-weight:400;
}
p {
  max-width:70ch;
}
p+p {
  margin-top:1rem;
}
a,button {
  touch-action:manipulation;
}
a:focus-visible,button:focus-visible,summary:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible {
  outline:3px solid var(--gold-dark);
  outline-offset:5px;
}
a:hover {
  text-decoration-thickness:2px;
}
section[id] {
  scroll-margin-top:100px;
}
.container {
  width:min(1280px,calc(100% - 96px));
  margin-inline:auto;
}
.skip-link {
  position:fixed;
  top:8px;
  left:8px;
  background:var(--navy);
  color:white;
  padding:12px 20px;
  z-index:100;
  transform:translateY(-160%);
}
.skip-link:focus {
  transform:none;
}
.site-header {
  position:sticky;
  top:0;
  z-index:30;
  background:var(--paper);
  border-bottom:1px solid var(--line);
}
.header-inner {
  width:min(1440px,calc(100% - 64px));
  margin:auto;
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex:none;
  text-decoration:none;
}
.brand img:first-child {
  width:42px;
}
.brand .wordmark {
  width:178px;
}
nav {
  display:flex;
  align-items:center;
  gap:22px;
}
nav>a {
  font-size:14px;
  line-height:1.35;
  text-decoration:none;
}
nav>a:not(.button):hover {
  color:var(--gold-dark);
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  min-height:54px;
  padding:15px 22px;
  background:var(--navy);
  color:var(--paper);
  border:1px solid var(--navy);
  border-radius:5px;
  font-size:14px;
  font-weight:600;
  line-height:1.45;
  text-decoration:none;
  transition:transform .18s,background .18s;
  text-align:center;
}
.button:hover {
  transform:translateY(-2px);
  background:var(--navy-soft);
}
.button span {
  font-size:20px;
  line-height:1;
}
.button-small {
  min-height:44px;
  padding:12px 15px;
}
.menu-toggle {
  display:none;
}
.hero {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  padding-block:66px 52px;
  align-items:center;
}
.eyebrow {
  text-transform:uppercase;
  font-weight:600;
  letter-spacing:.14em;
  font-size:12px;
  line-height:1.7;
  margin-bottom:22px;
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--gold-dark);
}
.eyebrow:before {
  content:'';
  width:23px;
  height:1px;
  background:currentColor;
  flex:none;
}
.hero h1 em {
  color:var(--gold-dark);
}
.hero-description {
  margin-top:28px;
  max-width:540px;
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
}
.hero-actions {
  display:flex;
  align-items:flex-start;
  flex-direction:column;
  gap:18px;
  margin-top:28px;
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  font-weight:600;
}
.text-link span {
  font-size:19px;
}
.microcopy {
  color:var(--muted);
  font-size:12px;
  line-height:1.7;
  margin-top:24px;
  max-width:52ch;
}
.hero-figure {
  position:relative;
  isolation:isolate;
  background:var(--navy);
  border-radius:var(--radius);
  overflow:hidden;
  min-width:0;
  padding:26px 30px 28px;
  color:var(--paper);
}
.contour {
  position:absolute;
  z-index:-1;
  inset:-4%;
  background:url('/assets/contours.webp') center/cover;
  opacity:.16;
  pointer-events:none;
  animation:contour-drift 38s ease-in-out infinite alternate;
}
.figure-heading {
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#dbc9a7;
}
.figure-heading span:last-child {
  font-size:9px;
}
.hero-image {
  width:100%;
  max-width:470px;
  margin:22px auto 14px;
  filter:drop-shadow(0 16px 22px #0004);
}
figcaption {
  display:flex;
  gap:18px;
  align-items:flex-start;
  border-top:1px solid #ffffff2c;
  padding-top:22px;
}
figcaption strong {
  font-family:var(--serif);
  font-size:27px;
  line-height:1.2;
  font-weight:400;
  letter-spacing:-.02em;
}
figcaption p {
  font-size:11px;
  color:#c5cddb;
  margin-top:8px;
}
.gold-rule {
  height:36px;
  width:2px;
  background:var(--gold);
  flex:none;
  margin-top:4px;
}
.record-strip {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:25px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  font-size:12px;
  color:var(--muted);
}
.record-strip span:first-child {
  font-family:var(--serif);
  font-style:italic;
  font-size:20px;
  color:var(--navy);
}
.record-strip span:not(:first-child):before {
  content:'+';
  color:var(--gold-dark);
  margin-right:12px;
}
@keyframes contour-drift {
  to {
    transform:translate(2%,1%) scale(1.025);
  }
}
@media(min-width:1600px) {
  .hero {
    gap:92px;
  }
}
@media(max-width:1200px) {
  .header-inner {
    width:calc(100% - 40px);
  }
  nav {
    gap:14px;
  }
  .brand .wordmark {
    width:148px;
  }
  .brand img:first-child {
    width:36px;
  }
  nav>a {
    font-size:12px;
  }
  nav .button {
    font-size:12px;
    padding:12px;
  }
  .hero {
    gap:38px;
  }
  .container {
    width:calc(100% - 72px);
  }
  .hero-figure {
    padding:23px;
  }
  .figure-heading span:last-child {
    display:none;
  }
  .record-strip {
    gap:12px;
  }
  .record-strip span {
    font-size:11px;
  }
}
@media(max-width:1050px) {
  .header-inner {
    min-height:78px;
  }
  .menu-toggle {
    display:flex;
    gap:14px;
    align-items:center;
    border:1px solid var(--line);
    border-radius:4px;
    background:transparent;
    padding:9px 13px;
    font-size:14px;
    min-height:44px;
  }
  .brand .wordmark {
    width:170px;
  }
  .brand img:first-child {
    width:40px;
  }
  nav {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:var(--paper);
    padding:20px 36px 28px;
    border-bottom:1px solid var(--line);
    box-shadow:0 16px 20px #071a3610;
    align-items:stretch;
    gap:0;
  }
  nav.is-open {
    display:flex;
    flex-direction:column;
  }
  nav>a {
    font-size:16px;
    padding:12px 0;
  }
  nav .button {
    font-size:14px;
    margin-top:10px;
  }
  .hero {
    padding-top:45px;
    gap:30px;
  }
  .hero h1 {
    font-size:3.25rem;
  }
  .hero-description {
    font-size:15px;
  }
  .hero-figure {
    padding:20px;
  }
  .hero-image {
    margin-block:30px;
  }
  .record-strip {
    flex-wrap:wrap;
    justify-content:center;
  }
  .record-strip span:first-child {
    width:100%;
    text-align:center;
  }
  .record-strip span {
    font-size:12px;
  }
}
@media(max-width:700px) {
  html {
    scroll-padding-top:90px;
  }
  .header-inner {
    width:calc(100% - 36px);
    min-height:76px;
  }
  .brand {
    gap:8px;
  }
  .brand .wordmark {
    width:151px;
  }
  .brand img:first-child {
    width:34px;
  }
  .container {
    width:calc(100% - 40px);
  }
  .hero {
    grid-template-columns:1fr;
    gap:32px;
    padding-top:38px;
    padding-bottom:30px;
  }
  .hero h1 {
    font-size:clamp(2.85rem,11vw,4rem);
    max-width:13ch;
  }
  .desktop-break {
    display:none;
  }
  .hero h1 em {
    display:inline;
  }
  .hero-description {
    font-size:16px;
    margin-top:23px;
  }
  .eyebrow {
    font-size:10px;
    letter-spacing:.105em;
    gap:8px;
    margin-bottom:20px;
  }
  .eyebrow:before {
    width:16px;
  }
  .hero-actions {
    margin-top:24px;
    gap:17px;
  }
  .button {
    font-size:13px;
    padding:15px 17px;
  }
  .hero-actions .button {
    width:100%;
    gap:8px;
  }
  .hero-actions .text-link {
    font-size:13px;
  }
  .hero-figure {
    padding:22px;
  }
  .hero-image {
    max-width:330px;
    margin:16px auto;
  }
  .figure-heading {
    font-size:9px;
  }
  figcaption {
    padding-top:18px;
  }
  figcaption strong {
    font-size:25px;
  }
  figcaption p {
    font-size:10px;
  }
  .record-strip {
    gap:10px 16px;
  }
  .record-strip span:not(:first-child):before {
    margin-right:6px;
  }
  .microcopy {
    font-size:12px;
  }
  .menu-toggle {
    font-size:13px;
    padding:8px 10px;
  }
  h2 {
    font-size:2.4rem;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important;
  }
}
/* The same document rhythm continues through services, scope and inquiry. */
.section {
  padding-block:96px;
}
.section-intro {
  margin-bottom:42px;
}
.split-intro {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
  align-items:end;
}
.split-intro h2 {
  font-size:clamp(2.2rem,3vw,3.05rem);
  max-width:20ch;
}
.intro-copy,.section-deck {
  color:var(--muted);
}
.section-deck {
  margin-top:22px;
  max-width:58ch;
}
.source-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.source-card {
  padding:27px 25px;
  border:1px solid var(--line);
  border-radius:8px;
  transition:border-color .2s;
}
.source-card:hover,.service-card:hover {
  border-color:var(--gold);
}
.card-number {
  display:block;
  font-size:12px;
  letter-spacing:.12em;
  color:var(--gold-dark);
  font-weight:600;
}
.source-card h3 {
  margin-top:28px;
  margin-bottom:12px;
}
.source-card p {
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}
.services-section {
  background:var(--canvas);
  border-block:1px solid var(--line);
}
.services-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.service-card {
  background:var(--paper);
  border:1px solid #ded7ca;
  border-radius:10px;
  padding:30px;
  transition:border-color .2s;
}
.service-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:24px;
}
.service-top img {
  width:44px;
  height:44px;
  object-fit:contain;
}
.service-top>span:last-child {
  color:var(--gold-dark);
  font-size:12px;
  letter-spacing:.1em;
}
.service-top .line-icon {
  font-size:40px;
  line-height:44px;
  width:44px;
  text-align:center;
  color:var(--navy);
}
.service-card h3 {
  font-size:19px;
  margin-bottom:12px;
  max-width:25ch;
}
.service-card p {
  font-size:16px;
  color:var(--muted);
}
.flagship {
  position:relative;
  isolation:isolate;
  background:var(--navy);
  color:var(--paper);
  overflow:hidden;
}
.flagship .contour {
  opacity:.065;
  animation:none;
}
.flagship-grid {
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:100px;
  align-items:center;
}
.flagship .eyebrow {
  color:var(--gold);
}
.flagship h2 {
  font-size:clamp(3rem,4.6vw,4.4rem);
}
.flagship h2 em {
  color:var(--gold);
}
.flagship-subtitle {
  font-family:var(--serif);
  font-size:25px;
  line-height:1.4;
  margin-top:28px;
  margin-bottom:23px;
}
.flagship-copy>p:not(.eyebrow):not(.flagship-subtitle) {
  color:#cad1db;
}
.flagship-copy>p {
  font-size:16px;
}
.package-list {
  list-style:none;
  padding:0;
  margin:28px 0;
}
.package-list li {
  position:relative;
  padding:9px 0 9px 24px;
  border-bottom:1px solid #ffffff17;
  font-size:15px;
  line-height:1.55;
}
.package-list li:before {
  content:'+';
  position:absolute;
  left:0;
  color:var(--gold);
}
.flagship-copy .scope-note {
  font-size:13px!important;
  line-height:1.8;
  padding-left:18px;
  border-left:2px solid var(--gold);
  margin-top:25px;
}
.purchase-card {
  border-radius:14px;
  overflow:hidden;
  background:var(--paper);
  color:var(--navy);
  border:1px solid #d9c399;
  box-shadow:0 20px 50px #0003;
}
.purchase-art {
  background:#e8dfcd;
  max-height:285px;
  overflow:hidden;
  padding:24px 52px 0;
}
.purchase-art img {
  width:245px;
  margin:auto;
  transform:rotate(-5deg);
}
.purchase-body {
  padding:34px;
}
.purchase-body .eyebrow {
  color:var(--gold-dark);
  font-size:11px;
}
.purchase-body h3 {
  font-family:var(--serif);
  font-size:36px;
  letter-spacing:-.04em;
  line-height:1.13;
  font-weight:400;
  margin-bottom:20px;
}
.purchase-body>p:not(.eyebrow) {
  font-size:15px;
  color:var(--muted);
}
.purchase-meta {
  display:flex;
  justify-content:space-between;
  gap:12px;
  border-block:1px solid var(--line);
  padding-block:15px;
  margin-top:24px;
  font-size:12px;
}
.purchase-body .price-note {
  font-size:13px!important;
  margin-block:17px;
}
.purchase-body .button {
  width:100%;
  font-size:14px;
}
.purchase-body>.text-link {
  margin-top:20px;
  font-size:14px;
}
.process-grid {
  list-style:none;
  padding:0;
  margin:46px 0 0;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:28px;
}
.process-grid li {
  position:relative;
  min-width:0;
}
.process-grid li:before {
  content:'';
  position:absolute;
  left:0;
  right:-28px;
  top:26px;
  border-top:1px solid var(--line);
  z-index:-1;
}
.process-grid li:last-child:before {
  right:0;
}
.step-number {
  display:flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  border-radius:50%;
  background:var(--paper);
  border:1px solid var(--gold);
  color:var(--gold-dark);
  font-family:var(--serif);
  font-size:22px;
  margin-bottom:28px;
}
.process-grid h3 {
  font-size:16px;
  min-height:46px;
  margin-bottom:14px;
}
.process-grid p {
  font-size:15px;
  color:var(--muted);
  line-height:1.75;
}
.deliverables-section {
  background:#f4f0e7;
}
.deliverables-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:95px;
  align-items:center;
}
.file-figure {
  border:1px solid #cfc4b1;
  border-radius:12px;
  padding:26px;
  background:#e9e2d4;
}
.file-label {
  display:flex;
  flex-direction:column;
  gap:6px;
  border-bottom:1px solid #c4b8a0;
  padding-bottom:18px;
}
.file-label span:first-child {
  font-size:14px;
  font-weight:600;
  letter-spacing:.18em;
}
.file-label span:last-child {
  font-size:12px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.file-figure img {
  width:94%;
  margin:25px auto 14px;
}
.file-figure figcaption {
  font-size:12px;
  color:var(--muted);
  padding:12px 0 0;
  display:block;
  border-color:#c4b8a0;
}
.deliverables-list {
  list-style:none;
  margin:28px 0;
  padding:0;
}
.deliverables-list li {
  display:flex;
  gap:14px;
  padding-block:9px;
  border-bottom:1px solid var(--line);
  font-size:16px;
}
.deliverables-list li:before {
  content:'✓';
  color:var(--gold-dark);
}
.small-note {
  font-size:13px;
  color:var(--muted);
  line-height:1.8;
}
.webinar-panel {
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background:var(--navy);
  color:var(--paper);
}
.webinar-art {
  background:var(--canvas);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:45px 30px;
  gap:24px;
}
.webinar-art img {
  width:100%;
  max-width:420px;
}
.webinar-art>span {
  font-family:var(--serif);
  color:var(--gold-dark);
  font-style:italic;
  font-size:21px;
  text-align:center;
}
.webinar-copy {
  padding:50px;
}
.webinar-copy .eyebrow {
  color:var(--gold);
}
.webinar-copy h2 {
  font-size:clamp(2rem,2.8vw,3rem);
  line-height:1.14;
}
.webinar-copy>p:not(.eyebrow) {
  color:#cbd1da;
  font-size:16px;
  margin-top:24px;
}
.button-gold {
  background:var(--gold);
  border-color:var(--gold);
  color:var(--navy);
}
.button-gold:hover {
  background:#d9b473;
}
.webinar-copy .button {
  margin-top:28px;
}
.webinar-copy .webinar-tags {
  font-size:12px!important;
  color:#cbd1da;
}
.boundaries-section {
  background:#f4f0e7;
}
.boundaries-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}
.boundaries-grid article {
  padding:32px 36px;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:10px;
}
.boundaries-grid h3 {
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:13px;
  padding-bottom:20px;
  border-bottom:1px solid var(--line);
}
.check-list,.dash-list {
  list-style:none;
  margin:18px 0 0;
  padding:0;
}
.check-list li,.dash-list li {
  position:relative;
  padding:7px 0 7px 28px;
  font-size:16px;
}
.check-list li:before {
  content:'✓';
  color:var(--gold-dark);
  position:absolute;
  left:0;
}
.dash-list li:before {
  content:'—';
  color:var(--muted);
  position:absolute;
  left:0;
}
.boundary-limit {
  background:transparent!important;
}
.deadline-note {
  margin-top:30px;
  padding:24px 30px;
  border-left:2px solid var(--gold);
  background:#e9e2d4;
}
.deadline-note strong {
  font-size:15px;
  font-weight:600;
}
.deadline-note p {
  max-width:none;
  font-size:14px;
  color:var(--muted);
  margin-top:7px;
}
.about-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  align-items:center;
  gap:120px;
}
.about-art {
  padding:45px;
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  flex-direction:column;
  gap:35px;
  border-radius:50% 50% 8px 8px;
  background:#f4f0e7;
}
.about-art img {
  width:270px;
  mix-blend-mode:multiply;
}
.about-art span {
  font-family:var(--serif);
  font-style:italic;
  font-size:18px;
  color:var(--gold-dark);
  text-align:center;
}
.about-grid h2 {
  margin-bottom:30px;
}
.about-grid h2 em {
  color:var(--gold-dark);
}
.about-grid p:not(.eyebrow) {
  color:var(--muted);
}
.about-grid .text-link {
  margin-top:28px;
}
.faq-section {
  background:var(--canvas);
}
.faq-grid {
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:100px;
}
.faq-grid h2 {
  margin-bottom:30px;
}
.faq-grid>div>p:not(.eyebrow) {
  font-size:15px;
  color:var(--muted);
}
.faq-list details {
  border-bottom:1px solid #c7bfaf;
}
.faq-list details:first-child {
  border-top:1px solid #c7bfaf;
}
summary {
  cursor:pointer;
  list-style:none;
  position:relative;
  padding:24px 40px 24px 0;
  line-height:1.6;
  font-size:16px;
  font-weight:500;
}
summary::-webkit-details-marker {
  display:none;
}
summary:after {
  content:'+';
  position:absolute;
  right:4px;
  top:21px;
  font-size:25px;
  font-weight:300;
  color:var(--gold-dark);
}
details[open]>summary:after {
  content:'−';
}
.faq-list details>p {
  font-size:16px;
  color:var(--muted);
  padding:0 35px 24px 0;
}
.contact-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:90px;
}
.contact-grid h2 {
  margin-bottom:25px;
}
.contact-grid>div>p:not(.eyebrow) {
  color:var(--muted);
}
.contact-grid .text-link {
  margin-top:26px;
}
.contact-email {
  font-size:14px;
}
.form-privacy {
  display:flex;
  gap:16px;
  border-top:1px solid var(--line);
  padding-top:25px;
  margin-top:32px;
}
.form-privacy>span {
  font-size:30px;
  color:var(--gold-dark);
}
.form-privacy p {
  font-size:14px;
  color:var(--muted);
}
#inquiry-form {
  padding:32px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#f7f4ed;
  min-width:0;
}
.preview-note {
  font-size:13px;
  color:var(--muted);
  padding:0 0 20px;
  margin-bottom:24px;
  border-bottom:1px solid var(--line);
}
.preview-note strong {
  color:var(--gold-dark);
  font-weight:600;
}
.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:20px;
}
label {
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:14px;
  font-weight:500;
  min-width:0;
}
input,select,textarea {
  background:var(--paper);
  color:var(--navy);
  border:1px solid #aeb2b6;
  border-radius:4px;
  min-height:46px;
  width:100%;
  padding:10px 12px;
  font-size:16px;
  line-height:1.4;
}
select {
  padding-right:25px;
}
textarea {
  resize:vertical;
}
textarea::placeholder {
  color:#707682;
  font-size:14px;
  line-height:1.6;
}
.field-help {
  font-size:12px;
  color:var(--muted);
  margin-top:10px;
}
#inquiry-form>.button {
  margin-top:22px;
}
.deadline-alert {
  background:#eee1c4;
  border-left:2px solid var(--gold-dark);
  padding:13px;
  font-size:14px;
  margin-bottom:20px;
}
.inquiry-review {
  border-top:1px solid var(--line);
  margin-top:26px;
  padding-top:24px;
}
.inquiry-review p {
  font-size:14px;
  color:var(--muted);
  margin-top:10px;
}
.inquiry-review dl {
  font-size:14px;
  overflow-wrap:anywhere;
}
.inquiry-review dt {
  font-weight:600;
  margin-top:12px;
}
.inquiry-review dd {
  margin-left:0;
  color:var(--muted);
  white-space:pre-wrap;
}
.review-actions {
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.text-button {
  border:0;
  background:transparent;
  text-decoration:underline;
  text-underline-offset:4px;
  font-size:14px;
  min-height:44px;
  padding:8px 0;
}
.final-section {
  position:relative;
  isolation:isolate;
  background:var(--navy);
  color:var(--paper);
  padding:78px 0;
  overflow:hidden;
}
.final-section .contour {
  opacity:.08;
  animation:none;
}
.final-inner {
  text-align:center;
}
.final-inner .eyebrow {
  justify-content:center;
  color:var(--gold);
}
.final-inner h2 {
  font-size:clamp(2.8rem,4.3vw,4.4rem);
}
.final-inner h2 em {
  color:var(--gold);
}
.final-inner>p:not(.eyebrow) {
  margin:24px auto 0;
  max-width:61ch;
  color:#d1d7df;
}
.final-actions {
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:32px;
}
.button-outline {
  border-color:#a6acb5;
  background:transparent;
}
.button-outline:hover {
  background:#ffffff12;
}
.site-footer {
  padding:52px 0 22px;
  background:var(--paper);
}
.footer-top {
  display:flex;
  justify-content:space-between;
  gap:40px;
  align-items:center;
  padding-bottom:36px;
}
.footer-top>div>p {
  font-size:13px;
  color:var(--muted);
  margin-top:13px;
}
.site-footer nav {
  position:static;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px 25px;
  max-width:540px;
  padding:0;
  background:transparent;
  border:0;
  box-shadow:none;
}
.site-footer nav a {
  font-size:14px;
  padding:0;
}
.footer-boundary {
  border-top:1px solid var(--line);
  padding-top:26px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
}
.footer-boundary p {
  font-size:12px;
  color:var(--muted);
  margin:0;
}
.legal-disclaimer {
  margin-top:20px;
}
.legal-disclaimer summary {
  font-size:13px;
  padding:12px 30px 12px 0;
  max-width:210px;
}
.legal-disclaimer summary:after {
  top:7px;
  font-size:22px;
}
.legal-disclaimer p {
  font-size:12px;
  max-width:none;
  color:var(--muted);
  margin-top:12px;
  line-height:1.85;
}
.footer-bottom {
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:18px;
  border-top:1px solid var(--line);
  padding-top:22px;
  margin-top:24px;
  color:var(--muted);
  font-size:12px;
}
.footer-bottom span:nth-child(2) {
  font-family:var(--serif);
  font-style:italic;
  font-size:14px;
}
.legal-main {
  max-width:850px;
  padding-block:70px 90px;
}
.legal-main h1 {
  font-size:clamp(2.8rem,5vw,4rem);
  margin-bottom:30px;
}
.legal-main h2 {
  font-size:27px;
  letter-spacing:-.025em;
  margin:36px 0 16px;
}
.legal-main p,.legal-main li {
  color:var(--muted);
}
.legal-main ul {
  padding-left:24px;
}
.policy-draft {
  border-left:2px solid var(--gold);
  padding:18px 22px;
  background:var(--canvas);
  margin-bottom:30px;
  font-size:14px;
}
.policy-meta {
  font-size:13px;
  margin-bottom:20px;
}
.policy-placeholder {
  padding:16px;
  border:1px dashed var(--gold-dark);
  margin-top:20px;
  font-size:14px;
}
.legal-main .back-link {
  display:inline-block;
  margin-bottom:30px;
  font-size:14px;
}
/* Readable metadata, without requiring remote font downloads. */
.figure-heading,.figure-heading span:last-child {
  font-size:12px;
  letter-spacing:.06em;
}
.figure-heading span:last-child {
  display:none;
}
figcaption p {
  font-size:12px;
}
.record-strip span {
  font-size:13px;
}
.eyebrow {
  font-size:12px;
}
.microcopy {
  font-size:13px;
}
.button,.hero-actions .text-link {
  font-size:14px;
}
@media(max-width:1200px) {
  .split-intro {
    gap:55px;
  }
  .flagship-grid {
    gap:55px;
  }
  .deliverables-grid {
    gap:55px;
  }
  .source-card {
    padding:24px 20px;
  }
  .service-card {
    padding:25px;
  }
  .webinar-copy {
    padding:36px;
  }
  .about-grid {
    gap:65px;
  }
  .contact-grid,.faq-grid {
    gap:55px;
  }
  .process-grid {
    gap:20px;
  }
  .process-grid li:before {
    right:-20px;
  }
  .purchase-body {
    padding:28px;
  }
  .footer-top {
    align-items:flex-start;
  }
  .site-footer nav {
    max-width:420px;
  }
  .hero {
    gap:40px;
  }
  .hero-figure {
    padding:25px;
  }
}
@media(max-width:1050px) {
  .section {
    padding-block:70px;
  }
  .source-grid {
    grid-template-columns:repeat(2,1fr);
  }
  .services-grid {
    grid-template-columns:repeat(2,1fr);
  }
  .source-card h3 {
    margin-top:20px;
  }
  .hero-description {
    font-size:16px;
  }
  .flagship-grid {
    gap:36px;
    grid-template-columns:1.05fr .95fr;
  }
  .purchase-body {
    padding:23px;
  }
  .purchase-body .button {
    padding:14px 12px;
    gap:8px;
  }
  .flagship h2 {
    font-size:3.2rem;
  }
  .purchase-meta {
    flex-direction:column;
    gap:3px;
  }
  .process-grid {
    grid-template-columns:repeat(5,1fr);
    gap:17px;
  }
  .process-grid h3 {
    font-size:15px;
    min-height:65px;
  }
  .process-grid p {
    font-size:14px;
  }
  .process-grid li:before {
    right:-17px;
  }
  .webinar-panel {
    grid-template-columns:.8fr 1.2fr;
  }
  .webinar-copy {
    padding:30px;
  }
  .webinar-art {
    padding:25px;
  }
  .webinar-copy h2 {
    font-size:2.2rem;
  }
  .about-grid {
    gap:45px;
  }
  .about-art {
    padding:32px;
  }
  .about-art span {
    font-size:16px;
  }
  .boundaries-grid {
    gap:20px;
  }
  .boundaries-grid article {
    padding:27px;
  }
  .faq-grid {
    grid-template-columns:.75fr 1.25fr;
    gap:40px;
  }
  .contact-grid {
    grid-template-columns:1fr;
    gap:35px;
  }
  .contact-grid>div {
    max-width:650px;
  }
  .contact-grid h2 br {
    display:none;
  }
  .contact-grid .form-privacy {
    max-width:500px;
  }
  #inquiry-form {
    padding:30px;
  }
  .footer-top {
    gap:25px;
  }
  .footer-top .brand .wordmark {
    width:150px;
  }
  .site-footer nav {
    max-width:340px;
  }
}
@media(max-width:760px) {
  .split-intro,.flagship-grid,.deliverables-grid,.about-grid,.faq-grid {
    grid-template-columns:1fr;
    gap:36px;
  }
  .split-intro h2 {
    max-width:24ch;
  }
  .source-grid {
    gap:14px;
  }
  .flagship-copy {
    max-width:640px;
  }
  .purchase-card {
    max-width:490px;
    margin-inline:auto;
    width:100%;
  }
  .purchase-art {
    max-height:220px;
  }
  .purchase-body {
    padding:28px;
  }
  .purchase-meta {
    flex-direction:row;
  }
  .process-grid {
    grid-template-columns:1fr;
    gap:0;
    margin-top:32px;
  }
  .process-grid li {
    padding:0 0 32px 77px;
    min-height:145px;
  }
  .process-grid li:before {
    top:25px;
    bottom:0;
    left:25px;
    right:auto;
    border-top:0;
    border-left:1px solid var(--line);
  }
  .process-grid li:last-child {
    padding-bottom:0;
  }
  .process-grid li:last-child:before {
    display:none;
  }
  .step-number {
    position:absolute;
    left:0;
    top:0;
  }
  .process-grid h3 {
    font-size:17px;
    min-height:0;
    padding-top:10px;
    margin-bottom:10px;
  }
  .process-grid p {
    font-size:16px;
    max-width:55ch;
  }
  .file-figure {
    max-width:480px;
    width:100%;
    margin-inline:auto;
    order:2;
  }
  .deliverables-grid>div {
    order:1;
  }
  .webinar-panel {
    grid-template-columns:1fr;
  }
  .webinar-art {
    padding:25px 35px;
    gap:14px;
  }
  .webinar-art img {
    max-width:330px;
  }
  .webinar-copy {
    padding:30px;
  }
  .webinar-copy h2 {
    font-size:2.3rem;
  }
  .boundaries-grid {
    grid-template-columns:1fr;
  }
  .about-art {
    max-width:320px;
    width:100%;
    margin:auto;
    order:2;
  }
  .about-grid>div:not(.about-art) {
    order:1;
  }
  .about-art img {
    width:210px;
  }
  .faq-grid>div>p:not(.eyebrow) {
    font-size:16px;
  }
  .faq-grid h2 {
    margin-bottom:24px;
  }
  .faq-grid {
    gap:35px;
  }
  .footer-top {
    flex-direction:column;
    gap:28px;
  }
  .site-footer nav {
    max-width:none;
    gap:16px 22px;
    flex-direction:row;
  }
  .footer-boundary {
    grid-template-columns:1fr;
    gap:16px;
  }
  .footer-bottom span:nth-child(2) {
    width:100%;
    order:3;
  }
  .deliverables-list {
    margin-bottom:22px;
  }
  .hero .eyebrow {
    font-size:11px;
    letter-spacing:.1em;
  }
  .hero .figure-heading {
    font-size:12px;
  }
  .record-strip span {
    font-size:12px;
  }
}
@media(max-width:480px) {
  .section {
    padding-block:56px;
  }
  .section-intro {
    margin-bottom:30px;
  }
  .source-grid,.services-grid {
    grid-template-columns:1fr;
  }
  .source-card {
    padding:25px;
  }
  .source-card h3 {
    margin-top:17px;
  }
  .service-card {
    padding:26px;
  }
  .service-card h3 {
    max-width:none;
  }
  .service-top {
    margin-bottom:20px;
  }
  .flagship h2 {
    font-size:3.2rem;
  }
  .flagship-subtitle {
    font-size:24px;
  }
  .flagship-grid {
    gap:36px;
  }
  .purchase-body {
    padding:25px;
  }
  .purchase-body h3 {
    font-size:34px;
  }
  .purchase-meta {
    font-size:12px;
    gap:10px;
  }
  .process-grid li {
    padding-left:72px;
  }
  .deliverables-grid {
    gap:28px;
  }
  .file-figure {
    padding:20px;
  }
  .file-label span:last-child {
    font-size:11px;
    letter-spacing:0;
  }
  .webinar-copy {
    padding:28px 23px;
  }
  .webinar-copy h2 {
    font-size:2.2rem;
  }
  .webinar-copy .button {
    width:100%;
  }
  .webinar-art {
    padding:25px;
  }
  .webinar-art span {
    font-size:19px;
  }
  .boundaries-grid article {
    padding:24px;
  }
  .deadline-note {
    padding:20px;
  }
  .about-grid h2 {
    font-size:2.6rem;
  }
  .form-grid {
    grid-template-columns:1fr;
    gap:18px;
  }
  #inquiry-form {
    padding:22px 18px;
  }
  .form-privacy {
    gap:12px;
  }
  .final-section {
    padding-block:57px;
  }
  .final-inner h2 {
    font-size:2.7rem;
  }
  .final-actions {
    flex-direction:column;
    gap:14px;
  }
  .final-actions .button {
    width:100%;
  }
  .final-inner>p:not(.eyebrow) {
    font-size:16px;
  }
  .legal-main {
    padding-top:40px;
  }
  .footer-bottom {
    font-size:12px;
  }
  .hero .button {
    font-size:13px;
  }
  .hero-actions .text-link {
    font-size:13px;
  }
  .hero-figure {
    padding:21px;
  }
  .hero .eyebrow {
    font-size:10px;
  }
  .hero h1 {
    font-size:2.95rem;
  }
}
[hidden] {
  display:none!important;
}
.keep-together {
  white-space:nowrap;
}
.flagship-copy>.flagship-subtitle {
  font-size:25px;
}
section[id] {
  scroll-margin-top:12px;
}
.hero-image {
  animation:gentle-reveal .7s ease-out;
}
.figure-heading,.hero .figure-heading {
  font-size:12px;
}
.hero .eyebrow,.purchase-body .eyebrow {
  font-size:12px;
  letter-spacing:.06em;
}
.hero .button,.hero-actions .text-link {
  font-size:14px;
}
.hero .eyebrow {
  max-width:36ch;
  align-items:flex-start;
}
.hero .eyebrow:before {
  margin-top:10px;
}
.purchase-art img {
  transform:none;
}
.file-label span:last-child {
  font-size:12px;
}
.process-grid p,.package-list li {
  font-size:16px;
}
@keyframes gentle-reveal {
  from {
    opacity:.4;
  }
  to {
    opacity:1;
  }
}
@media(min-width:1051px) and (max-width:1200px) {
  .brand .wordmark {
    width:128px;
  }
  .brand img:first-child {
    width:32px;
  }
  .brand {
    gap:6px;
  }
  .header-inner {
    gap:18px;
  }
  nav {
    gap:14px;
  }
  nav>a {
    font-size:14px;
  }
  nav .button {
    font-size:14px;
    padding:12px;
  }
  .header-inner {
    width:calc(100% - 32px);
  }
}
@media(max-width:480px) {
  .hero .button {
    padding:15px 12px;
    gap:7px;
    font-size:14px;
  }
  .hero h1 {
    font-size:2.8rem;
  }
  .hero .eyebrow {
    font-size:12px;
    line-height:1.6;
    max-width:36ch;
  }
  .hero-actions .text-link {
    font-size:14px;
  }
  .purchase-meta {
    flex-direction:column;
  }
}
@media(min-width:761px) and (max-width:900px) {
  .process-grid {
    grid-template-columns:1fr;
    gap:0;
  }
  .process-grid li {
    padding:0 0 30px 80px;
    min-height:130px;
  }
  .step-number {
    position:absolute;
    left:0;
    top:0;
  }
  .process-grid li:before {
    left:25px;
    right:auto;
    top:25px;
    bottom:0;
    border-top:0;
    border-left:1px solid var(--line);
  }
  .process-grid li:last-child:before {
    display:none;
  }
  .process-grid h3 {
    min-height:0;
    padding-top:10px;
    font-size:17px;
  }
  .process-grid p {
    font-size:16px;
  }
  .flagship-grid {
    grid-template-columns:1fr;
  }
  .purchase-card {
    width:100%;
    max-width:490px;
    margin:auto;
  }
  .purchase-meta {
    flex-direction:row;
  }
  .flagship-copy {
    max-width:650px;
  }
}

/* Direct package purchase and separate, reviewed trust inquiry. */
.purchase-body > .package-price:not(.eyebrow) {
  color:var(--navy); font-family:var(--serif); font-size:2.7rem;
  line-height:1.2; margin:25px 0 0;
}
.package-price span { display:block; font-family:var(--sans); font-size:.9rem; margin-top:8px; }
.advanced-section { background:var(--canvas); border-bottom:1px solid var(--line); padding:65px 0; }
.advanced-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:start; }
.advanced-grid h2 { font-size:clamp(2rem,3.1vw,2.8rem); margin-bottom:22px; }
.advanced-grid p { color:var(--muted); }
.advanced-detail { padding-left:35px; border-left:1px solid var(--gold); }
.advanced-detail h3 { margin-bottom:16px; }
.advanced-detail p { font-size:1rem; margin-bottom:16px; }
.advanced-detail .small-note { margin-top:20px; font-size:.875rem; }
.consent-label { display:block; font-size:.875rem; line-height:1.6; margin-top:22px; font-weight:400; }
.form-wide { grid-column:1 / -1; }
.consent-label input { width:20px; height:20px; min-height:0; margin:0 7px 0 0; vertical-align:middle; accent-color:var(--navy); }
.form-trap { position:absolute; width:1px; height:1px; overflow:hidden; clip-path:inset(50%); }
.inquiry-status { margin-top:22px; border-left:3px solid var(--gold-dark); padding:16px; background:var(--paper); font-size:1rem; }
.inquiry-status.is-error { border-left-color:#943c30; }
#clear-inquiry { display:block; margin-top:10px; }
#inquiry-next-step .button { margin-top:18px; width:100%; }
button:disabled { cursor:wait; opacity:.65; transform:none; }
@media(max-width:767px) {
  .advanced-section { padding:45px 0; }
  .advanced-grid { grid-template-columns:1fr; gap:24px; }
  .advanced-detail { padding:25px 0 0; border-left:0; border-top:1px solid var(--gold); }
  #inquiry-next-step .button { font-size:.875rem; }
}
