:root {
  --nf-color-night: #071827;
  --nf-color-deep: #102b46;
  --nf-color-ivory: #f8f5ec;
  --nf-color-gold: #c6a15b;
  --nf-color-moon: #aab3bf;
  --nf-color-silver: #d7dce2;
  --nf-color-light: #fffdf7;
  --nf-color-accent: #bfddf2;
  --nf-color-ink: #10202e;
  --nf-color-success: #497260;
  --nf-color-warning: #916c2f;
  --nf-font-editorial: Newsreader, "EB Garamond", Georgia, serif;
  --nf-font-functional: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nf-space-1: 0.5rem;
  --nf-space-2: 0.75rem;
  --nf-space-3: 1rem;
  --nf-space-4: 1.5rem;
  --nf-space-5: 2.25rem;
  --nf-space-6: 3.5rem;
  --nf-space-7: 5.5rem;
  --nf-radius-sm: 0.5rem;
  --nf-radius-md: 1rem;
  --nf-radius-lg: 1.75rem;
  --nf-shadow-soft: 0 18px 50px rgba(7, 24, 39, 0.09);
  --nf-shadow-dark: 0 24px 60px rgba(0, 7, 13, 0.3);
  --nf-container: 73.75rem;
  --nf-reading: 48.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--nf-color-ivory);
  color: var(--nf-color-ink);
  font-family: var(--nf-font-functional);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--nf-color-accent);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6em;
  color: inherit;
  font-family: var(--nf-font-editorial);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 10vw, 6.3rem);
}

h2 {
  font-size: clamp(2.1rem, 6vw, 4rem);
}

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

p {
  margin: 0 0 1.25rem;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  z-index: 100000;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--nf-color-light);
  color: var(--nf-color-night);
  font-weight: 700;
}

.nf-container {
  width: min(calc(100% - 2rem), var(--nf-container));
  margin-inline: auto;
}

.nf-container--narrow {
  max-width: var(--nf-reading);
}

.nf-site-header {
  position: relative;
  z-index: 100;
  min-height: 4.75rem;
  border-bottom: 1px solid rgba(248, 245, 236, 0.12);
  background: rgba(7, 24, 39, 0.98);
  color: var(--nf-color-ivory);
}

.admin-bar .nf-site-header {
  top: 0;
}

.nf-site-header__inner {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--nf-space-3);
}

.nf-brand {
  position: relative;
  z-index: 102;
  flex: 0 1 13rem;
}

.nf-brand img,
.nf-brand .custom-logo {
  width: auto;
  max-width: 13rem;
  max-height: 3.25rem;
}

.nf-brand a {
  display: inline-flex;
  align-items: center;
}

.nf-menu-toggle {
  position: relative;
  z-index: 102;
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: 1px solid rgba(248, 245, 236, 0.24);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  gap: 0.28rem;
  place-content: center;
}

.nf-menu-toggle span[aria-hidden="true"] {
  display: block;
  width: 1.2rem;
  height: 1px;
  background: var(--nf-color-ivory);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nf-menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:first-of-type {
  transform: translateY(0.34rem) rotate(45deg);
}

.nf-menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(2) {
  opacity: 0;
}

.nf-menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:last-of-type {
  transform: translateY(-0.34rem) rotate(-45deg);
}

.nf-primary-nav {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: flex;
  visibility: hidden;
  padding: 7rem 1.5rem 2rem;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  background: var(--nf-color-night);
  opacity: 0;
  transform: translateY(-1rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.nf-primary-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nf-primary-nav__list,
.nf-primary-nav > ul {
  display: flex;
  padding: 0;
  margin: 0 0 var(--nf-space-5);
  flex-direction: column;
  list-style: none;
  gap: 0;
}

.nf-primary-nav li {
  border-bottom: 1px solid rgba(248, 245, 236, 0.12);
}

.nf-primary-nav li a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--nf-font-editorial);
  font-size: 1.6rem;
  text-decoration: none;
}

.nf-primary-nav .current-menu-item > a,
.nf-primary-nav li a:hover {
  color: var(--nf-color-gold);
}

.nf-button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.nf-button,
.wp-element-button,
.wp-block-button__link {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid var(--nf-color-gold);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--nf-color-gold);
  color: var(--nf-color-night);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.nf-button:hover,
.wp-element-button:hover,
.wp-block-button__link:hover {
  border-color: #d7b873;
  background: #d7b873;
  transform: translateY(-2px);
}

.nf-button--outline {
  border-color: rgba(248, 245, 236, 0.58);
  background: transparent;
  color: var(--nf-color-ivory);
}

.nf-button--outline:hover {
  border-color: var(--nf-color-ivory);
  background: var(--nf-color-ivory);
  color: var(--nf-color-night);
}

.nf-button--small {
  min-height: 2.75rem;
  padding-inline: 1rem;
  font-size: 0.72rem;
}

.nf-button--block {
  width: 100%;
}

.nf-text-link {
  display: inline-flex;
  align-items: center;
  color: var(--nf-color-deep);
  font-size: 0.88rem;
  font-weight: 700;
  gap: 0.45rem;
  text-decoration: none;
}

.nf-text-link span {
  color: var(--nf-color-gold);
  transition: transform 180ms ease;
}

.nf-text-link:hover span {
  transform: translateX(0.25rem);
}

.nf-text-link--light {
  color: var(--nf-color-ivory);
}

.nf-eyebrow {
  margin-bottom: 1rem;
  color: var(--nf-color-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.nf-hero {
  position: relative;
  display: grid;
  min-height: min(49rem, calc(100svh - 4.75rem));
  overflow: hidden;
  align-items: end;
  background-color: var(--nf-color-night);
  background-image: linear-gradient(180deg, rgba(7, 24, 39, 0.08) 0%, rgba(7, 24, 39, 0.12) 40%, rgba(7, 24, 39, 0.9) 100%), url("../images/hero-mobile.webp");
  background-position: center 40%;
  background-size: cover;
  color: var(--nf-color-ivory);
}

.nf-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(7, 24, 39, 0.55));
  content: "";
  pointer-events: none;
}

.nf-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 5.5rem 2.75rem;
}

.nf-hero__content {
  max-width: 42rem;
}

.nf-hero h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
}

.nf-hero__lead,
.nf-page-hero__lead {
  max-width: 42rem;
  color: rgba(248, 245, 236, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.nf-hero .nf-button-group {
  margin-top: 1.75rem;
}

.nf-trust-line {
  margin: 1.4rem 0 0;
  color: var(--nf-color-moon);
  font-size: 0.78rem;
}

.nf-trust-line span {
  margin-right: 0.35rem;
  color: var(--nf-color-gold);
}

.nf-section {
  position: relative;
  padding-block: var(--nf-space-7);
}

.nf-section--light {
  background: var(--nf-color-ivory);
  color: var(--nf-color-ink);
}

.nf-section--dark {
  background-color: var(--nf-color-night);
  background-image: linear-gradient(rgba(7, 24, 39, 0.9), rgba(7, 24, 39, 0.94)), url("../images/background-dark.webp");
  background-position: center;
  background-size: cover;
  color: var(--nf-color-ivory);
}

.nf-section--editorial {
  background-color: #eef0ee;
  background-image: linear-gradient(rgba(248, 245, 236, 0.86), rgba(248, 245, 236, 0.91)), url("../images/background-light.webp");
  background-position: center;
  background-size: cover;
}

.nf-section--page-content:has(.wp-block-cover:first-child) {
  padding-block: 0;
}

.nf-split {
  display: grid;
  gap: 2rem;
}

.nf-split h2 {
  max-width: 12ch;
}

.nf-prose--lead {
  max-width: 39rem;
  font-size: 1.12rem;
}

.nf-section-heading {
  display: flex;
  margin-bottom: var(--nf-space-5);
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.nf-section-heading h2 {
  max-width: 15ch;
}

.nf-section-heading--center {
  align-items: center;
  text-align: center;
}

.nf-section-heading--center h2 {
  margin-inline: auto;
}

.nf-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

.nf-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 43, 70, 0.12);
  border-radius: var(--nf-radius-md);
  background: var(--nf-color-light);
  color: var(--nf-color-ink);
  box-shadow: var(--nf-shadow-soft);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.nf-card:hover {
  box-shadow: 0 24px 60px rgba(7, 24, 39, 0.14);
  transform: translateY(-0.25rem);
}

.nf-section--dark .nf-card {
  border-color: rgba(248, 245, 236, 0.14);
  background: rgba(16, 43, 70, 0.74);
  color: var(--nf-color-ivory);
  box-shadow: var(--nf-shadow-dark);
  backdrop-filter: blur(8px);
}

.nf-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--nf-color-deep);
}

.nf-card__media img,
.nf-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.nf-card:hover .nf-card__media img {
  transform: scale(1.025);
}

.nf-card__placeholder {
  display: block;
  background: radial-gradient(circle at 70% 30%, rgba(198, 161, 91, 0.35), transparent 10%), linear-gradient(135deg, var(--nf-color-night), var(--nf-color-deep));
}

.nf-card__body {
  padding: 1.5rem;
}

.nf-card__title {
  margin: 0.65rem 0 0.6rem;
  font-size: 1.65rem;
}

.nf-card__title a {
  text-decoration: none;
}

.nf-card__meta {
  margin: 0;
  color: #66727c;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nf-card__price {
  display: flex;
  margin: 0 0 0.15rem;
  flex-wrap: wrap;
  align-items: baseline;
  color: var(--nf-color-gold);
  font-weight: 700;
  gap: 0.45rem;
}

.nf-card__price small,
.nf-service-facts small {
  font-size: 0.76rem;
  font-weight: 600;
}

.nf-card__regular {
  margin: 0 0 0.75rem;
  color: #77818a;
  font-size: 0.78rem;
}

.nf-card__badges,
.nf-service-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.nf-card__icon {
  width: 5rem;
  height: 5rem;
  margin: 1.5rem 0 0 1.5rem;
  object-fit: contain;
}

.nf-card--service .nf-card__media {
  aspect-ratio: 4 / 5;
}

.nf-badge {
  display: inline-flex;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(198, 161, 91, 0.46);
  border-radius: 999px;
  color: var(--nf-color-warning);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nf-section--dark .nf-badge {
  color: var(--nf-color-gold);
}

.nf-badge--available {
  border-color: rgba(73, 114, 96, 0.45);
  color: var(--nf-color-success);
}

.nf-badge--unavailable {
  opacity: 0.7;
}

.nf-steps {
  display: grid;
  padding: 0;
  margin: var(--nf-space-5) 0 0;
  list-style: none;
  gap: 2rem;
}

.nf-steps li {
  position: relative;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(16, 43, 70, 0.18);
}

.nf-steps li > span {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--nf-color-gold);
  font-family: var(--nf-font-editorial);
  font-size: 1.1rem;
}

.nf-steps h3 {
  font-size: 1.65rem;
}

.nf-principles {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.nf-principles__visual {
  display: grid;
  min-height: 18rem;
  border: 1px solid rgba(16, 43, 70, 0.12);
  border-radius: 50% 50% 46% 54% / 55% 43% 57% 45%;
  background: rgba(255, 253, 247, 0.62);
  place-items: center;
}

.nf-principles__visual img {
  width: min(45%, 12rem);
}

.nf-check-list {
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.nf-check-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.75rem;
  border-bottom: 1px solid rgba(16, 43, 70, 0.12);
}

.nf-check-list li::before {
  position: absolute;
  left: 0;
  color: var(--nf-color-gold);
  content: "✦";
}

.nf-final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.nf-final-cta h2 {
  max-width: 13ch;
}

.nf-floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: grid;
  min-width: 3.5rem;
  height: 3.5rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: #2b7050;
  color: #fff;
  box-shadow: 0 10px 30px rgba(7, 24, 39, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
  place-items: center;
  text-decoration: none;
}

.nf-page-hero,
.nf-article-hero,
.nf-service-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 10vw, 8rem);
  background-color: var(--nf-color-night);
  background-image: radial-gradient(circle at 80% 20%, rgba(198, 161, 91, 0.14), transparent 25%), linear-gradient(135deg, rgba(7, 24, 39, 0.92), rgba(16, 43, 70, 0.93)), url("../images/background-dark.webp");
  background-size: cover;
  color: var(--nf-color-ivory);
}

.nf-page-hero::after,
.nf-article-hero::after {
  position: absolute;
  top: 15%;
  right: -8rem;
  width: 23rem;
  height: 23rem;
  border: 1px solid rgba(198, 161, 91, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3rem transparent, inset 0 0 0 calc(3rem + 1px) rgba(198, 161, 91, 0.12);
  content: "";
}

.nf-page-hero .nf-container,
.nf-article-hero .nf-container {
  position: relative;
  z-index: 1;
}

.nf-page-hero h1,
.nf-service-hero h1,
.nf-article-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.nf-page-hero--compact {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.nf-breadcrumbs {
  margin-bottom: 1.5rem;
  color: rgba(248, 245, 236, 0.7);
  font-size: 0.75rem;
}

.nf-section--light .nf-breadcrumbs {
  color: var(--nf-color-deep);
}

.nf-breadcrumbs ol {
  display: flex;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.45rem;
}

.nf-breadcrumbs li:not(:last-child)::after {
  margin-left: 0.45rem;
  color: var(--nf-color-gold);
  content: "/";
}

.nf-breadcrumbs a {
  text-decoration: none;
}

.nf-entry-content {
  max-width: var(--nf-reading);
}

.nf-entry-content > * {
  max-width: 100%;
}

.nf-toc {
  padding: var(--nf-space-5);
  margin: 0 0 var(--nf-space-6);
  border: 1px solid rgba(16, 43, 70, 0.14);
  border-left: 3px solid var(--nf-color-gold);
  border-radius: var(--nf-radius-md);
  background: rgba(191, 221, 242, 0.14);
}

.nf-toc[hidden] {
  display: none;
}

.nf-toc__title {
  margin: 0 0 var(--nf-space-3);
  color: var(--nf-color-deep);
  font-family: var(--nf-font-functional);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nf-toc ol {
  padding-left: 1.25rem;
  margin: 0;
}

.nf-toc li + li {
  margin-top: 0.45rem;
}

.nf-toc a {
  color: var(--nf-color-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.nf-toc__subitem {
  margin-left: 1rem;
  font-size: 0.94em;
}

.nf-entry-content > .alignwide {
  width: min(var(--nf-container), calc(100vw - 2rem));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.nf-entry-content > .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.nf-entry-content p,
.nf-entry-content li {
  font-size: 1.04rem;
}

.nf-entry-content h2,
.nf-entry-content h3 {
  margin-top: 1.6em;
}

.nf-entry-content blockquote {
  padding: 1.5rem 0 1.5rem 1.5rem;
  margin: 2rem 0;
  border-left: 3px solid var(--nf-color-gold);
  color: var(--nf-color-deep);
  font-family: var(--nf-font-editorial);
  font-size: 1.35rem;
}

.nf-entry-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.nf-entry-content th,
.nf-entry-content td {
  padding: 0.75rem;
  border: 1px solid var(--nf-color-silver);
  text-align: left;
}

.nf-entry-content details,
.wp-block-details {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(16, 43, 70, 0.18);
}

.nf-entry-content summary,
.wp-block-details summary {
  padding-right: 2rem;
  color: var(--nf-color-deep);
  font-weight: 700;
  cursor: pointer;
}

.nf-featured-image,
.nf-article-image {
  overflow: hidden;
  margin-bottom: 2.5rem;
  border-radius: var(--nf-radius-md);
}

.nf-featured-image img,
.nf-article-image img {
  width: 100%;
}

.nf-service-hero__grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.nf-service-hero .nf-badge {
  color: var(--nf-color-gold);
}

.nf-service-hero__badges {
  margin-bottom: 0.85rem;
}

.nf-service-code {
  margin: 0 0 0.5rem;
  color: var(--nf-color-gold);
  font-family: var(--nf-font-functional);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nf-service-hero .nf-button {
  margin-top: 1rem;
}

.nf-service-hero__media {
  width: min(100%, 31rem);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(248, 245, 236, 0.15);
  border-radius: var(--nf-radius-lg);
  box-shadow: var(--nf-shadow-dark);
}

.nf-service-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.nf-service-facts {
  border-bottom: 1px solid rgba(16, 43, 70, 0.12);
  background: var(--nf-color-light);
}

.nf-service-facts__grid {
  display: grid;
  padding-block: 1.4rem;
  gap: 1rem;
}

.nf-service-facts__grid > div {
  display: flex;
  flex-direction: column;
}

.nf-service-facts strong {
  display: block;
}

.nf-service-facts span {
  color: #68737e;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nf-entry-layout {
  display: grid;
  gap: 3rem;
}

.nf-service-aside {
  align-self: start;
}

.nf-responsible-box {
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(16, 43, 70, 0.14);
  border-radius: var(--nf-radius-md);
  background: rgba(255, 253, 247, 0.7);
}

.nf-service-input,
.nf-launch-notice {
  padding: 1.25rem;
  margin-bottom: 1rem;
  border-radius: var(--nf-radius-md);
}

.nf-service-input {
  border: 1px solid rgba(16, 43, 70, 0.14);
  background: rgba(191, 221, 242, 0.14);
}

.nf-launch-notice {
  border: 1px solid rgba(198, 161, 91, 0.45);
  background: rgba(198, 161, 91, 0.12);
}

.nf-service-input h2,
.nf-launch-notice strong {
  margin: 0 0 0.4rem;
  color: var(--nf-color-deep);
}

.nf-service-input h2 {
  font-size: 1.25rem;
}

.nf-service-input p,
.nf-launch-notice p {
  margin: 0;
  font-size: 0.92rem;
}

.nf-responsible-box img {
  margin-bottom: 1rem;
}

.nf-responsible-box h2 {
  font-size: 1.55rem;
}

.nf-article-hero {
  text-align: center;
}

.nf-article-hero h1 {
  max-width: 16ch;
  margin-inline: auto;
}

.nf-article-hero .nf-page-hero__lead {
  margin-inline: auto;
}

.nf-article-terms,
.nf-article-terms a {
  margin-bottom: 1rem;
  color: var(--nf-color-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nf-article-meta {
  display: flex;
  margin: 1.5rem 0 0;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--nf-color-moon);
  font-size: 0.76rem;
  gap: 0.35rem 1.25rem;
}

.nf-article-image {
  position: relative;
  z-index: 2;
  margin-top: -2.75rem;
  box-shadow: var(--nf-shadow-soft);
}

.nf-inline-cta {
  padding: 1.75rem;
  margin-top: 3rem;
  border-radius: var(--nf-radius-md);
  background: var(--nf-color-deep);
  color: var(--nf-color-ivory);
}

.nf-inline-cta h2 {
  margin-top: 0;
  font-size: clamp(1.65rem, 4vw, 2.3rem);
}

.nf-share {
  display: flex;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(16, 43, 70, 0.14);
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  font-size: 0.82rem;
}

.nf-share span {
  font-weight: 700;
}

.nf-search-form {
  display: flex;
  width: min(100%, 34rem);
  margin-top: 1.5rem;
}

.nf-search-form input {
  min-width: 0;
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(248, 245, 236, 0.3);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.nf-search-form input::placeholder {
  color: currentColor;
  opacity: 0.62;
}

.nf-search-form button {
  min-height: 3.25rem;
  padding-inline: 1.15rem;
  border: 1px solid var(--nf-color-gold);
  border-radius: 0 999px 999px 0;
  background: var(--nf-color-gold);
  color: var(--nf-color-night);
  font-weight: 700;
  cursor: pointer;
}

.nf-empty-state {
  grid-column: 1 / -1;
  padding: 3rem;
  border: 1px solid rgba(16, 43, 70, 0.14);
  border-radius: var(--nf-radius-md);
  text-align: center;
}

.nf-empty-state .nf-search-form {
  margin-inline: auto;
}

.nf-not-found {
  display: grid;
  min-height: 70vh;
  padding-block: 5rem;
  background: radial-gradient(circle at 50% 25%, rgba(198, 161, 91, 0.15), transparent 25%), var(--nf-color-night);
  color: var(--nf-color-ivory);
  place-items: center;
  text-align: center;
}

.nf-not-found__inner {
  max-width: 50rem;
}

.nf-not-found__number {
  margin: 0;
  color: rgba(198, 161, 91, 0.16);
  font-family: var(--nf-font-editorial);
  font-size: clamp(7rem, 30vw, 15rem);
  line-height: 0.7;
}

.nf-not-found .nf-button-group {
  margin-top: 2rem;
  justify-content: center;
}

.nf-not-found .nf-search-form {
  margin: 2rem auto 0;
}

.nf-comments {
  padding-block: 3rem;
  border-top: 1px solid rgba(16, 43, 70, 0.14);
  background: var(--nf-color-light);
}

.nf-comment-list {
  padding-left: 1.25rem;
}

.nf-comment-list li {
  margin-block: 1rem;
}

.comment-form input:not([type="checkbox"]),
.comment-form textarea,
.nf-entry-content input:not([type="checkbox"]):not([type="radio"]),
.nf-entry-content select,
.nf-entry-content textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid #9ba7b0;
  border-radius: var(--nf-radius-sm);
  background: var(--nf-color-light);
  color: var(--nf-color-ink);
}

.comment-form label,
.nf-entry-content label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.navigation.pagination {
  margin-top: 2.5rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-numbers {
  display: grid;
  min-width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(16, 43, 70, 0.18);
  border-radius: 50%;
  place-items: center;
  text-decoration: none;
}

.page-numbers.current {
  border-color: var(--nf-color-deep);
  background: var(--nf-color-deep);
  color: var(--nf-color-ivory);
}

.nf-site-footer {
  padding-top: var(--nf-space-6);
  border-top: 1px solid rgba(248, 245, 236, 0.12);
  background: #04121e;
  color: var(--nf-color-moon);
}

.nf-footer-grid {
  display: grid;
  gap: 2.5rem;
}

.nf-footer-brand img {
  width: 3.5rem;
  margin-bottom: 1rem;
}

.nf-footer-name,
.nf-footer-title {
  color: var(--nf-color-ivory);
  font-family: var(--nf-font-editorial);
}

.nf-footer-name {
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
}

.nf-footer-title {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.nf-footer-menu,
.nf-footer-menu > ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nf-footer-menu li {
  margin-bottom: 0.45rem;
}

.nf-footer-menu a,
.nf-social a,
.nf-footer-email {
  color: var(--nf-color-moon);
  text-decoration: none;
}

.nf-footer-menu a:hover,
.nf-social a:hover,
.nf-footer-email:hover {
  color: var(--nf-color-ivory);
}

.nf-social {
  display: flex;
  margin-bottom: 1rem;
  flex-direction: column;
  gap: 0.4rem;
}

.nf-footer-bottom {
  display: flex;
  padding-block: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(248, 245, 236, 0.1);
  flex-direction: column;
  gap: 1rem;
  font-size: 0.72rem;
}

.nf-footer-bottom p {
  margin: 0;
}

.nf-responsible-note {
  max-width: 53rem;
}

@media (min-width: 40rem) {
  .nf-container {
    width: min(calc(100% - 3rem), var(--nf-container));
  }

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

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

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

  .nf-service-facts__grid > div:nth-child(odd) {
    border-right: 1px solid rgba(16, 43, 70, 0.13);
  }

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

@media (min-width: 48rem) {
  .nf-hero {
    min-height: 50rem;
    align-items: center;
    background-image: linear-gradient(90deg, rgba(7, 24, 39, 0.76) 0%, rgba(7, 24, 39, 0.42) 48%, rgba(7, 24, 39, 0.08) 100%), url("../images/hero-tablet.webp");
    background-position: center;
  }

  .nf-hero__inner {
    padding-block: 6rem;
  }

  .nf-split,
  .nf-principles,
  .nf-service-hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nf-section-heading {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .nf-section-heading--center {
    justify-content: center;
  }

  .nf-final-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nf-entry-layout {
    grid-template-columns: minmax(0, var(--nf-reading)) minmax(15rem, 21rem);
    justify-content: space-between;
  }

  .nf-service-aside {
    position: sticky;
    top: 2rem;
  }
}

@media (min-width: 64rem) {
  .nf-site-header {
    position: sticky;
    top: 0;
    background: rgba(7, 24, 39, 0.95);
    backdrop-filter: blur(14px);
  }

  .admin-bar .nf-site-header {
    top: 32px;
  }

  .nf-menu-toggle {
    display: none;
  }

  .nf-primary-nav {
    position: static;
    display: flex;
    visibility: visible;
    padding: 0;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    background: transparent;
    opacity: 1;
    transform: none;
  }

  .nf-primary-nav__list,
  .nf-primary-nav > ul {
    display: flex;
    margin: 0;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }

  .nf-primary-nav li {
    border: 0;
  }

  .nf-primary-nav li a {
    padding: 0.75rem 0.65rem;
    font-family: var(--nf-font-functional);
    font-size: 0.76rem;
    font-weight: 600;
  }

  .nf-header-cta {
    margin-left: 0.75rem;
  }

  .nf-hero {
    min-height: min(50rem, calc(100vh - 4.75rem));
    align-items: center;
    background-image: linear-gradient(90deg, rgba(7, 24, 39, 0.72) 0%, rgba(7, 24, 39, 0.35) 48%, rgba(7, 24, 39, 0.03) 100%), url("../images/hero-laptop.webp");
  }

  .nf-hero__inner {
    padding-block: 6.5rem;
  }

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

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

  .nf-service-facts__grid > div {
    border-right: 1px solid rgba(16, 43, 70, 0.13);
  }

  .nf-service-facts__grid > div:last-child {
    border-right: 0;
  }

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

  .nf-footer-bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

@media (min-width: 90rem) {
  .nf-hero {
    background-image: linear-gradient(90deg, rgba(7, 24, 39, 0.72) 0%, rgba(7, 24, 39, 0.35) 48%, rgba(7, 24, 39, 0.03) 100%), url("../images/hero-desktop.webp");
  }
}

@media (min-width: 90rem) {
  .nf-container {
    width: min(calc(100% - 5rem), var(--nf-container));
  }

  .nf-hero__content {
    max-width: 46rem;
  }
}

@media (max-width: 63.999rem) and (min-width: 48.875rem) {
  .admin-bar .nf-primary-nav {
    top: 32px;
  }
}

@media (max-width: 48.8125rem) {
  .admin-bar .nf-primary-nav {
    top: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
