:root {
  --opr-ink: #06111c;
  --opr-ink-2: #0b1826;
  --opr-blue: #0d1e2e;
  --opr-gold: #c99a52;
  --opr-gold-2: #e0b46e;
  --opr-paper: #f7f3ec;
  --opr-paper-2: #fbfaf7;
  --opr-text: #17202a;
  --opr-muted: #6a6f77;
  --opr-line: rgba(22, 28, 35, 0.12);
  --opr-white: #fff;
  --opr-shadow: 0 24px 70px rgba(5, 12, 20, 0.14);
  --opr-radius: 2px;
  --opr-serif: Georgia, "Times New Roman", serif;
  --opr-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.opr-theme {
  margin: 0;
  background: var(--opr-paper-2);
  color: var(--opr-text);
  font-family: var(--opr-sans);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

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

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

a:hover {
  color: var(--opr-gold);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

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

.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  margin: 8px;
  padding: 12px 16px;
  clip: auto;
  background: var(--opr-gold);
  color: var(--opr-ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #06111c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(210px, 300px) 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--opr-white);
}

.brand__opr {
  display: inline-grid;
  grid-template-columns: 34px auto;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.26em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand__circle {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

.brand__zych {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  text-transform: uppercase;
}

.brand__zych strong {
  font-family: var(--opr-serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 0.85;
}

.brand__zych small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.34em;
  line-height: 1;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a,
.nav-dropdown__trigger {
  position: relative;
  padding-block: 27px;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown__trigger > svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown__trigger > svg,
.nav-dropdown:hover .nav-dropdown__trigger > svg,
.nav-dropdown:focus-within .nav-dropdown__trigger > svg {
  transform: rotate(180deg);
}

.site-nav > a::after,
.nav-dropdown__trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--opr-gold);
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.nav-dropdown:hover .nav-dropdown__trigger::after,
.nav-dropdown:focus-within .nav-dropdown__trigger::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  width: 330px;
  display: grid;
  gap: 2px;
  padding: 14px;
  background: rgba(6, 17, 28, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown__panel a {
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.nav-dropdown__panel a:hover,
.nav-dropdown__panel a:focus {
  background: rgba(201, 154, 82, 0.12);
  color: var(--opr-gold-2);
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel,
.nav-dropdown.is-open .nav-dropdown__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-linkedin {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: var(--opr-white);
  color: var(--opr-ink);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--opr-white);
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.opr-btn,
.wpforms-submit,
.fallback-form button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 0 22px;
  background: var(--opr-gold);
  color: #08131e;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.opr-btn:hover,
.wpforms-submit:hover,
.fallback-form button:hover {
  transform: translateY(-2px);
  background: var(--opr-gold-2);
  color: #06111c;
}

.opr-btn svg,
.text-link svg,
.footer-list svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.opr-btn--ghost {
  background: transparent;
  color: var(--opr-white);
  border-color: rgba(255, 255, 255, 0.34);
}

.opr-btn--ghost:hover {
  border-color: var(--opr-gold);
  color: var(--opr-gold);
  background: transparent;
}

.opr-btn--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 12px;
}

.opr-btn--gold {
  border-color: var(--opr-gold);
  color: var(--opr-gold);
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--opr-ink);
  color: var(--opr-white);
}

.hero--landing {
  min-height: 560px;
  background-image:
    linear-gradient(90deg, rgba(4, 13, 22, 0.98) 0%, rgba(4, 13, 22, 0.86) 42%, rgba(4, 13, 22, 0.28) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 47% 48%, rgba(201, 154, 82, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(4, 13, 22, 0.98) 0%, rgba(4, 13, 22, 0.92) 48%, rgba(4, 13, 22, 0.8) 100%);
  opacity: 1;
  transform: scale(1.02);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.36;
  filter: saturate(0.62) contrast(1.08) brightness(0.72);
}

.hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 13, 22, 0) 78%, rgba(4, 13, 22, 0.92) 100%),
    radial-gradient(circle at 67% 48%, rgba(255, 255, 255, 0.08), transparent 22%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 0.9fr);
  align-items: end;
  gap: 32px;
  padding-block: 62px 0;
}

.hero--landing .hero__grid {
  align-items: center;
  grid-template-columns: minmax(0, 760px);
  padding-block: 80px;
}

.hero__content {
  align-self: center;
  max-width: 690px;
  padding-block: 48px 62px;
}

.hero__eyebrow,
.section-label,
.section-kicker p,
.article-card__meta {
  margin: 0 0 14px;
  color: var(--opr-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.single-hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: var(--opr-serif);
  font-size: clamp(46px, 5vw, 70px);
  line-height: 1.02;
  font-weight: 700;
}

.hero h1 span,
.hero__subtitle {
  color: var(--opr-gold-2);
}

.hero__subtitle {
  margin: 18px 0 0;
  font-family: var(--opr-serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 700;
}

.hero__lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero__portrait {
  align-self: end;
  position: relative;
  margin: 0;
  min-height: 530px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero__portrait:not(.hero__portrait--reference)::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 44px;
  width: 72%;
  height: 68%;
  border: 3px solid rgba(201, 154, 82, 0.72);
}

.hero__portrait img {
  position: relative;
  z-index: 1;
  max-height: 650px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.38));
}

.hero__portrait--reference {
  min-height: 530px;
  margin-right: max(-12px, calc((1180px - 100vw) / 2));
  background-image: var(--hero-portrait);
  background-size: auto 114%;
  background-position: 62% bottom;
  background-repeat: no-repeat;
  box-shadow:
    inset 90px 0 120px #06111c,
    inset -96px 0 118px #06111c,
    inset 0 -72px 96px #06111c;
  filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.36));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%),
    linear-gradient(180deg, #000 0, #000 84%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%),
    linear-gradient(180deg, #000 0, #000 84%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hero__portrait--reference::before,
.hero__portrait--reference::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(6, 17, 28, 0), rgba(6, 17, 28, 0.72));
  pointer-events: none;
}

.hero__portrait--reference::after {
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(90deg, rgba(6, 17, 28, 0.98) 0%, rgba(6, 17, 28, 0) 28%, rgba(6, 17, 28, 0) 72%, rgba(6, 17, 28, 0.96) 100%),
    linear-gradient(180deg, rgba(6, 17, 28, 0.22) 0%, rgba(6, 17, 28, 0) 22%, rgba(6, 17, 28, 0) 76%, rgba(6, 17, 28, 0.9) 100%);
}

.section {
  padding-block: 96px;
  background: var(--opr-paper-2);
}

.section--cream {
  background: var(--opr-paper);
}

.section--thin {
  padding-block: 72px;
}

.section-kicker h2,
.section-heading-row h2,
.section h2,
.specialization-card h2,
.specialization-card h3,
.contact-band h2,
.about-process h2,
.site-footer h2 {
  margin: 0;
  font-family: var(--opr-serif);
  color: var(--opr-ink);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
}

.center {
  text-align: center;
}

.specializations {
  padding-block: 34px 54px;
  background: var(--opr-paper-2);
}

.specializations--page {
  padding-block: 86px;
}

.specialization-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--opr-line);
  border-bottom: 1px solid var(--opr-line);
}

.specialization-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 30px 38px;
  border-right: 1px solid var(--opr-line);
}

.specialization-card:last-child {
  border-right: 0;
}

.specialization-card__icon,
.benefit-item svg,
.benefit-item .opr-icon-img,
.service-mini-grid svg {
  width: 68px;
  height: 68px;
  color: var(--opr-gold);
}

.opr-icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.specialization-card__icon svg,
.specialization-card__icon .opr-icon-img,
.benefit-item svg,
.benefit-item .opr-icon-img,
.service-mini-grid svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.specialization-card h2,
.specialization-card h3 {
  margin-top: 28px;
  font-family: var(--opr-serif);
  color: var(--opr-ink);
  font-size: 28px;
  line-height: 1.08;
}

.specializations__title {
  margin: 4px 0 34px;
  text-align: center;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.specialization-card p {
  flex: 1;
  color: var(--opr-muted);
}

.specialization-card__related {
  margin: -4px 0 14px;
  color: var(--opr-gold);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--opr-gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-link:hover {
  color: var(--opr-ink);
}

.trust-strip {
  background: #06131f;
  color: var(--opr-white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid div {
  min-height: 82px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 14px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-strip__grid div:last-child {
  border-right: 0;
}

.trust-strip i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--opr-gold);
}

.trust-strip i svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip i .opr-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-strip strong {
  display: block;
  color: var(--opr-gold);
  font-family: var(--opr-sans);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.12;
}

.trust-strip span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12.5px;
  line-height: 1.3;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.article-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.article-grid--archive {
  grid-template-columns: repeat(3, 1fr);
}

.article-card {
  background: var(--opr-white);
  box-shadow: 0 14px 48px rgba(9, 20, 32, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--opr-shadow);
}

.article-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.article-card:hover .article-card__media img {
  transform: scale(1.04);
}

.article-card__body {
  padding: 26px;
}

.article-card h3 {
  margin: 0;
  font-family: var(--opr-serif);
  color: var(--opr-ink);
  font-size: 25px;
  line-height: 1.18;
}

.article-card p {
  color: var(--opr-muted);
}

.article-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.18fr 1fr;
}

.article-card--featured .article-card__media {
  aspect-ratio: auto;
  min-height: 360px;
  max-height: 430px;
}

.article-card--featured h3 {
  font-size: 34px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(270px, 0.66fr) minmax(420px, 1fr);
  align-items: stretch;
  background: var(--opr-paper-2);
  border-top: 1px solid var(--opr-line);
  border-bottom: 1px solid var(--opr-line);
}

.contact-band__image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.contact-band__copy {
  min-width: 0;
  padding: 48px 38px 48px 48px;
  align-self: center;
}

.contact-band__copy > p {
  margin: 0 0 12px;
  color: var(--opr-gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
}

.contact-band ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.contact-band li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.contact-band li svg {
  color: var(--opr-gold);
  width: 20px;
  height: 20px;
}

.contact-band h2 {
  max-width: 320px;
  font-size: clamp(31px, 2.7vw, 42px);
  overflow-wrap: break-word;
}

.contact-band .fallback-form label {
  gap: 0;
  font-size: 0 !important;
}

.contact-band .fallback-form input,
.contact-band .fallback-form textarea {
  font-size: 14px !important;
}

.contact-form-shell {
  padding: 42px 48px 42px 28px;
  align-self: center;
  min-width: 0;
}

.site-footer .contact-form-shell {
  padding: 0;
}

.wpforms-container,
.wpforms-form,
.fallback-form {
  margin: 0 !important;
}

.wpforms-field-container,
.fallback-form {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.wpforms-field {
  padding: 0 !important;
}

.wpforms-field-label,
.fallback-form label {
  display: grid !important;
  gap: 5px;
  color: var(--opr-muted);
  font-size: 13px !important;
}

.wpforms-field-label {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wpforms-field input,
.wpforms-field textarea,
.fallback-form input,
.fallback-form textarea {
  width: 100% !important;
  min-height: 46px;
  border: 1px solid rgba(11, 24, 38, 0.12) !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.9) !important;
  padding: 12px 14px !important;
  color: var(--opr-text) !important;
  font: inherit !important;
  max-width: 100%;
}

.wpforms-field textarea,
.fallback-form textarea {
  min-height: 118px;
}

.wpforms-submit-container {
  margin-top: 14px !important;
}

.wpforms-submit {
  border-radius: 0 !important;
}

.wpforms-field-gdpr-checkbox ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.wpforms-field-gdpr-checkbox li {
  display: grid !important;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
}

.wpforms-field-gdpr-checkbox input[type="checkbox"] {
  width: 14px !important;
  height: 14px !important;
  min-height: 14px !important;
  margin: 3px 0 0 !important;
  padding: 0 !important;
}

.wpforms-field-gdpr-checkbox .wpforms-field-label-inline {
  color: var(--opr-muted);
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.45;
}

.wpforms-error,
.wpforms-error-container {
  color: #a33232 !important;
  font-size: 12px !important;
}

.wpforms-confirmation-container-full {
  margin: 0 !important;
  border: 1px solid rgba(62, 126, 91, 0.3) !important;
  background: #eff7f1 !important;
  color: #174b2c !important;
}

.about-process {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  background: var(--opr-paper-2);
}

.about-process__about {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(220px, 0.62fr);
  align-items: end;
  gap: 18px;
  padding: 64px 0 0 max(40px, calc((100vw - 1180px) / 2));
  background: var(--opr-ink);
  color: var(--opr-white);
  overflow: hidden;
}

.about-process__about h2 {
  color: var(--opr-white);
}

.about-process__about p:not(.section-label) {
  color: rgba(255, 255, 255, 0.78);
}

.about-process__portrait {
  position: relative;
  align-self: end;
  min-height: 405px;
  margin: 0 22px 0 0;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
}

.about-process__portrait::before {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 18px;
  width: 78%;
  height: 78%;
  border: 3px solid rgba(201, 154, 82, 0.78);
}

.about-process__portrait img {
  position: relative;
  z-index: 1;
  max-height: 520px;
  max-width: 122%;
  align-self: end;
  object-fit: contain;
  object-position: center bottom;
  margin: 0 -20px -18px 0;
  mix-blend-mode: lighten;
}

.about-process__steps {
  padding: 64px max(40px, calc((100vw - 1180px) / 2)) 64px 68px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.process-grid article {
  position: relative;
}

.process-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -15px;
  width: 36px;
  height: 1px;
  background: rgba(201, 154, 82, 0.45);
}

.process-grid span {
  display: block;
  color: var(--opr-gold);
  font-family: var(--opr-serif);
  font-size: 58px;
  line-height: 1;
}

.process-grid h3 {
  margin: 18px 0 10px;
  font-family: var(--opr-serif);
  font-size: 24px;
}

.page-hero,
.single-hero {
  background:
    linear-gradient(90deg, rgba(4, 13, 22, 0.96), rgba(4, 13, 22, 0.86)),
    url("/oprawierodzinnym/wp-content/uploads/2024/03/EAFRySxY-1536x1024.jpg") center / cover;
  color: var(--opr-white);
}

.page-hero--compact {
  padding-block: 116px 86px;
}

.page-hero h1,
.single-hero h1 {
  color: var(--opr-white);
}

.page-hero p:not(.hero__eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
  gap: 88px;
  align-items: center;
}

.split-grid h2,
.split-media-grid h2,
.editorial-grid h2 {
  margin: 0 0 24px;
  font-family: var(--opr-serif);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}

.trust-panel {
  display: grid;
  gap: 22px;
  padding: 46px;
  background: var(--opr-white);
  box-shadow: var(--opr-shadow);
}

.trust-panel div {
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 700;
}

.trust-panel svg {
  width: 28px;
  height: 28px;
  color: var(--opr-gold);
}

.trust-panel .opr-icon-img {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
}

.benefit-row,
.step-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--opr-line);
  border-bottom: 1px solid var(--opr-line);
}

.benefit-item,
.step-row article {
  min-height: 220px;
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  gap: 18px;
  padding: 34px 22px;
  border-right: 1px solid var(--opr-line);
}

.benefit-item:last-child,
.step-row article:last-child {
  border-right: 0;
}

.benefit-item > .opr-icon-img {
  width: 68px !important;
  height: 68px !important;
  max-width: 68px;
  max-height: 68px;
  justify-self: center;
}

.benefit-item > svg {
  width: 68px !important;
  height: 68px !important;
  max-width: 68px;
  max-height: 68px;
  justify-self: center;
}

.split-media-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.2fr;
  gap: 62px;
  align-items: center;
}

.split-media-grid--reverse {
  grid-template-columns: 0.82fr 1fr;
}

.portrait-panel {
  background: var(--opr-ink);
  min-height: 560px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
}

.portrait-panel img {
  max-height: 560px;
  object-fit: contain;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 42px;
  margin-top: 38px;
}

.service-mini-grid article {
  min-width: 0;
  display: grid;
  align-content: start;
}

.service-mini-grid article svg {
  width: 52px;
  height: 52px;
}

.service-mini-grid article .opr-icon-img {
  width: 52px;
  height: 52px;
}

.service-mini-grid article h3,
.timeline-list h3,
.editorial-grid h2 {
  margin: 16px 0 8px;
  font-family: var(--opr-serif);
  font-size: 25px;
  line-height: 1.16;
}

.soft-image {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  box-shadow: var(--opr-shadow);
}

.timeline-list {
  display: grid;
  gap: 24px;
}

.timeline-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
}

.timeline-list span,
.step-row span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--opr-gold);
  color: var(--opr-ink);
  font-weight: 800;
}

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

.editorial-grid--stack {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
  gap: 34px;
}

.editorial-grid--stack article {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--opr-line);
}

.editorial-grid--stack article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.editorial-grid--stack p + p {
  margin-top: 14px;
}

.editorial-grid article {
  padding: 34px;
  background: var(--opr-white);
  box-shadow: 0 14px 48px rgba(9, 20, 32, 0.08);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.faq-layout__intro {
  position: sticky;
  top: 110px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--opr-line);
  background: var(--opr-white);
  box-shadow: 0 18px 48px rgba(9, 20, 32, 0.06);
}

.faq-item summary {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 22px;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  font-family: var(--opr-serif);
  color: var(--opr-ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
}

.faq-item summary i {
  width: 34px;
  height: 34px;
  position: relative;
  border: 1px solid rgba(191, 147, 74, 0.5);
  border-radius: 999px;
}

.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--opr-gold);
  transform: translate(-50%, -50%);
}

.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease, opacity 160ms ease;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--opr-line);
}

.faq-item[open] summary i::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__content {
  padding: 24px 26px 28px;
  color: var(--opr-muted);
}

.faq-item__content p {
  max-width: 78ch;
}

.faq-item__content p + p {
  margin-top: 14px;
}

.taxonomy-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.taxonomy-bar a {
  padding: 10px 14px;
  border: 1px solid var(--opr-line);
  background: var(--opr-white);
  color: var(--opr-muted);
  font-size: 13px;
  font-weight: 700;
}

.taxonomy-bar a:hover {
  border-color: var(--opr-gold);
  color: var(--opr-ink);
}

.single-hero {
  padding-block: 96px 72px;
}

.single-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.78fr;
  gap: 54px;
  align-items: center;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.single-hero__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: var(--opr-shadow);
}

.single-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  gap: 60px;
  padding-block: 78px;
}

.article-aside {
  display: grid;
  align-content: start;
  gap: 18px;
  position: sticky;
  top: 110px;
}

.aside-card {
  padding: 26px;
  background: var(--opr-ink);
  color: var(--opr-white);
}

.aside-card h2 {
  margin: 0 0 12px;
  color: var(--opr-white);
  font-family: var(--opr-serif);
  font-size: 25px;
}

.aside-card--muted {
  background: var(--opr-paper);
  color: var(--opr-text);
}

.aside-card--muted h2 {
  color: var(--opr-ink);
}

.entry-content {
  font-size: 18px;
  line-height: 1.82;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 1.8em;
  font-family: var(--opr-serif);
  line-height: 1.16;
  color: var(--opr-ink);
}

.entry-content h2 {
  font-size: 38px;
}

.entry-content h3 {
  font-size: 28px;
}

.entry-content a {
  color: var(--opr-gold);
  font-weight: 700;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 54px;
  align-items: start;
}

.contact-card {
  padding: 42px;
  background: var(--opr-ink);
  color: var(--opr-white);
}

.contact-card h2 {
  color: var(--opr-white);
}

.contact-page-form {
  scroll-margin-top: 96px;
  padding: 42px;
  background: #06111c;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(201, 154, 82, 0.16);
}

.contact-page-form h2 {
  margin-bottom: 12px;
  color: var(--opr-white);
  font-size: clamp(30px, 3vw, 42px);
}

.contact-page-form > p:not(.section-label) {
  max-width: 520px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-page-form .contact-form-shell {
  padding: 0;
}

.contact-page-form .fallback-form {
  grid-template-columns: 1fr 1fr;
}

.contact-page-form .wpforms-field-container {
  grid-template-columns: 1fr 1fr;
}

.contact-page-form .wpforms-field[data-field-id="2"],
.contact-page-form .wpforms-field[data-field-id="3"] {
  grid-column: 1 / -1;
}

.contact-page-form .fallback-form label:not(.form-consent) {
  gap: 0;
  font-size: 0 !important;
}

.contact-page-form .fallback-form label:nth-child(3),
.contact-page-form .fallback-form label:nth-child(4),
.contact-page-form .fallback-form .form-consent,
.contact-page-form .fallback-form button {
  grid-column: 1 / -1;
}

.contact-page-form .fallback-form input,
.contact-page-form .fallback-form textarea,
.contact-page-form .wpforms-field input,
.contact-page-form .wpforms-field textarea {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: var(--opr-white) !important;
  font-size: 14px !important;
}

.contact-page-form .fallback-form input::placeholder,
.contact-page-form .fallback-form textarea::placeholder,
.contact-page-form .wpforms-field input::placeholder,
.contact-page-form .wpforms-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.contact-page-form .fallback-form textarea {
  min-height: 150px;
}

.contact-page-form .fallback-form .form-consent {
  align-items: start;
  grid-template-columns: 16px 1fr;
  gap: 9px !important;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px !important;
  line-height: 1.5;
}

.contact-page-form .fallback-form button {
  justify-self: end;
  min-width: 220px;
}

.contact-page-form .wpforms-field-gdpr-checkbox .wpforms-field-label-inline {
  color: rgba(255, 255, 255, 0.62);
}

.contact-page-form .wpforms-submit-container {
  display: flex;
  justify-content: flex-end;
}

.contact-page-form .wpforms-submit {
  min-width: 220px;
}

.site-footer {
  background: #06111c;
  color: rgba(255, 255, 255, 0.76);
  padding-top: 74px;
  border-top: 1px solid rgba(201, 154, 82, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.85fr 1fr 1.42fr;
  gap: 34px;
}

.footer-logo {
  display: block;
  margin-bottom: 22px;
}

.footer-logo--r4 {
  width: min(285px, 100%);
  height: auto;
  margin: -12px 0 22px;
  object-fit: contain;
  object-position: left center;
}

.site-footer h2 {
  position: relative;
  margin: 0 0 30px;
  color: var(--opr-gold);
  font-family: var(--opr-sans);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 44px;
  height: 1px;
  background: rgba(201, 154, 82, 0.58);
}

.site-footer p {
  margin: 0 0 18px;
}

.site-footer strong {
  color: var(--opr-white);
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.footer-list li {
  display: flex;
  align-items: start;
  gap: 12px;
}

.footer-list svg {
  flex: 0 0 auto;
  color: var(--opr-gold);
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.site-footer .wpforms-field input,
.site-footer .wpforms-field textarea,
.site-footer .fallback-form input,
.site-footer .fallback-form textarea {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: var(--opr-white) !important;
}

.site-footer .fallback-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.site-footer .wpforms-field-container {
  grid-template-columns: 1fr 1fr;
}

.site-footer .wpforms-field[data-field-id="2"],
.site-footer .wpforms-field[data-field-id="3"] {
  grid-column: 1 / -1;
}

.site-footer .fallback-form label:not(.form-consent) {
  gap: 0;
  font-size: 0 !important;
}

.site-footer .fallback-form input,
.site-footer .fallback-form textarea {
  padding: 13px 16px !important;
  font-size: 13px !important;
}

.site-footer .fallback-form .form-field--phone,
.site-footer .fallback-form .form-field--message,
.site-footer .fallback-form .form-consent,
.site-footer .fallback-form button {
  grid-column: 1 / -1;
}

.site-footer .wpforms-field-gdpr-checkbox .wpforms-field-label-inline {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer .wpforms-submit {
  width: 100%;
  min-height: 48px;
}

.site-footer .fallback-form input::placeholder,
.site-footer .fallback-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer .fallback-form textarea {
  min-height: 138px;
}

.site-footer .fallback-form .form-consent {
  display: grid !important;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: start;
  gap: 8px !important;
  padding-top: 2px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px !important;
  line-height: 1.5;
}

.site-footer .fallback-form button {
  width: 100%;
  justify-self: stretch;
  min-height: 48px;
  min-width: 0;
}

.grecaptcha-badge,
iframe[src*="recaptcha"] {
  visibility: hidden !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom nav {
  display: flex;
  gap: 24px;
}

.pagination {
  margin-top: 46px;
}

.pagination .nav-links {
  display: flex;
  gap: 10px;
}

.pagination a,
.pagination span {
  padding: 10px 14px;
  background: var(--opr-white);
  border: 1px solid var(--opr-line);
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: minmax(190px, 1fr) auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 1px);
    display: none;
    padding: 20px;
    background: #06111c;
    box-shadow: var(--opr-shadow);
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: grid;
    justify-content: stretch;
    gap: 6px;
  }

  .site-nav a,
  .nav-dropdown__trigger {
    width: 100%;
    padding: 13px 12px;
    border-radius: 4px;
    text-align: left;
  }

  .site-nav a::after,
  .nav-dropdown__trigger::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus,
  .nav-dropdown__trigger:hover,
  .nav-dropdown__trigger:focus {
    background: rgba(255, 255, 255, 0.055);
    color: var(--opr-white);
  }

  .nav-dropdown__panel {
    position: static;
    width: auto;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 0 0 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: max-height 220ms ease, opacity 160ms ease, margin 160ms ease;
  }

  .nav-dropdown:hover .nav-dropdown__panel,
  .nav-dropdown:focus-within .nav-dropdown__panel {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown__panel {
    max-height: 440px;
    margin-top: 4px;
    padding-top: 4px;
    padding-bottom: 6px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown__panel a {
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
  }

  .header-actions {
    display: none;
  }

  .hero__grid,
  .single-hero__grid,
  .split-grid,
  .split-media-grid,
  .split-media-grid--reverse,
  .faq-layout,
  .article-shell,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    gap: 28px;
  }

  .faq-layout__intro {
    position: static;
  }

  .specialization-grid,
  .article-grid,
  .article-grid--archive,
  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-card--featured {
    grid-column: span 2;
  }

  .contact-band,
  .about-process,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-band {
    grid-template-columns: 1fr;
  }

  .contact-band__image img {
    min-height: 280px;
    max-height: 360px;
  }

  .about-process__about {
    padding-left: 40px;
  }

  .about-process__portrait {
    min-height: 360px;
    margin-right: 0;
  }

  .benefit-row,
  .step-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .brand {
    gap: 13px;
  }

  .brand__opr {
    grid-template-columns: 28px auto;
    max-width: 124px;
    font-size: 7px;
    letter-spacing: 0.2em;
  }

  .brand__circle {
    width: 28px;
    height: 28px;
  }

  .brand__zych strong {
    font-size: 27px;
  }

  .brand__zych small {
    font-size: 6px;
    letter-spacing: 0.26em;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .hero--landing .hero__grid {
    min-height: auto;
    display: block;
    padding-block: 72px 0;
  }

  .hero__content {
    padding-block: 36px 42px;
  }

  .hero h1,
  .page-hero h1,
  .single-hero h1 {
    font-size: 43px;
    line-height: 1.06;
  }

  .hero__lead,
  .page-hero p:not(.hero__eyebrow) {
    font-size: 16px;
  }

  .hero__portrait {
    min-height: 430px;
    margin-inline: -14px;
  }

  .hero__portrait--reference {
    min-height: 390px;
    margin-inline: -14px;
    background-size: auto 104%;
    background-position: 58% bottom;
  }

  .hero__portrait img {
    max-height: 450px;
  }

  .section {
    padding-block: 64px;
  }

  .specialization-grid,
  .article-feature-grid,
  .article-grid,
  .article-grid--archive,
  .contact-band,
  .about-process,
  .footer-grid,
  .trust-strip__grid,
  .process-grid,
  .service-mini-grid,
  .editorial-grid,
  .benefit-row,
  .step-row {
    grid-template-columns: 1fr;
  }

  .specialization-card,
  .trust-strip__grid div,
  .benefit-item,
  .step-row article {
    border-right: 0;
    border-bottom: 1px solid var(--opr-line);
  }

  .article-card--featured {
    grid-column: auto;
    display: block;
  }

  .article-card--featured h3 {
    font-size: 28px;
  }

  .section-heading-row,
  .footer-bottom {
    display: grid;
    align-items: start;
  }

  .contact-form-shell,
  .contact-band__copy {
    padding: 30px 20px;
  }

  .site-footer .fallback-form {
    grid-template-columns: 1fr;
  }

  .site-footer .fallback-form .form-field,
  .site-footer .fallback-form .form-consent,
  .site-footer .fallback-form button {
    grid-column: 1;
  }

  .contact-band__image img {
    min-height: 240px;
  }

  .about-process__about {
    grid-template-columns: 1fr;
    padding: 54px 24px 0;
  }

  .about-process__steps {
    padding: 54px 24px;
  }

  .about-process__portrait {
    min-height: 360px;
    margin: 18px 0 0;
    justify-content: center;
  }

  .about-process__portrait::before {
    right: 12%;
    bottom: 16px;
    width: 70%;
    height: 76%;
  }

  .about-process__portrait img {
    max-height: 390px;
  }

  .process-grid article:not(:last-child)::after {
    display: none;
  }

  .portrait-panel,
  .soft-image {
    min-height: 380px;
  }

  .article-shell {
    padding-block: 48px;
  }

  .article-aside {
    position: static;
  }
}

/* Amelia pilot page. Kept isolated so booking assets and layout do not affect other pages. */
.booking-page-hero {
  padding-block: 68px 54px;
  background: var(--opr-paper);
  border-bottom: 1px solid var(--opr-line);
}

.booking-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 72px;
  align-items: end;
}

.booking-page-hero h1 {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--opr-ink);
  font-family: var(--opr-serif);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.02;
}

.booking-page-hero__inner > p {
  max-width: 540px;
  margin: 0 0 6px;
  color: var(--opr-muted);
  font-size: 17px;
  line-height: 1.65;
}

.booking-page-section {
  padding-block: 46px 78px;
  background: var(--opr-paper-2);
}

.booking-page-content {
  max-width: 1080px;
}

.booking-page-notice {
  margin: 0 auto 24px;
  padding: 14px 18px;
  border-left: 3px solid var(--opr-gold);
  background: var(--opr-white);
  color: var(--opr-muted);
  font-size: 14px;
}

.booking-page-content .amelia-v2-booking {
  margin: 0 auto;
}

.booking-page-content #amelia-container {
  box-shadow: 0 18px 54px rgba(9, 20, 32, 0.1);
}

@media (max-width: 760px) {
  .booking-page-hero {
    padding-block: 42px 34px;
  }

  .booking-page-hero__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .booking-page-hero h1 {
    font-size: 42px;
  }

  .booking-page-section {
    padding-block: 26px 54px;
  }

  .booking-page-content {
    width: 100%;
    padding-inline: 14px;
  }

  .booking-page-notice {
    margin-bottom: 16px;
  }

  .booking-page-content #amelia-container {
    box-shadow: none;
  }
}

/* Client brief implementation: shared landing sections and compact contact CTA. */
.hero--landing .hero__detail {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

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

.benefit-row--four .benefit-item {
  min-height: 300px;
}

.benefit-item svg,
.procedure-grid svg,
.profile-help svg,
.decision-cta svg,
.consultation-banner svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-mini-grid--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--opr-line);
  border-bottom: 1px solid var(--opr-line);
}

.service-mini-grid--wide article {
  min-height: 330px;
  padding: 34px 28px;
  border-right: 1px solid var(--opr-line);
}

.service-mini-grid--wide article:last-child {
  border-right: 0;
}

.service-mini-grid--wide article > svg,
.service-mini-grid--wide article > .opr-icon-img {
  width: 58px;
  height: 58px;
  color: var(--opr-gold);
}

.message-strip {
  padding-block: 30px;
  background: #f3efe8;
  border-block: 1px solid var(--opr-line);
}

.message-strip__inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 54px;
}

.message-strip h2 {
  margin: 0;
  font-family: var(--opr-serif);
  color: var(--opr-ink);
  font-size: clamp(27px, 2.5vw, 38px);
  line-height: 1.08;
}

.message-strip .contact-form-shell {
  padding: 0;
}

.message-strip .wpforms-field-container,
.message-strip .fallback-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.message-strip .wpforms-field[data-field-id="3"],
.message-strip .form-consent {
  grid-column: 1 / -1;
}

.message-strip .wpforms-field input,
.message-strip .fallback-form input {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(6, 17, 28, 0.14);
  background: #fff;
  color: var(--opr-text);
  font: inherit;
  font-size: 13px;
}

.message-strip .wpforms-submit,
.message-strip .fallback-form button {
  min-height: 46px;
  padding: 10px 22px;
  border: 0;
  background: var(--opr-gold);
  color: var(--opr-ink);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.message-strip .wpforms-submit-container {
  margin-top: -26px !important;
  text-align: right;
}

.message-strip .form-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--opr-muted);
  font-size: 11px;
}

.message-strip .form-consent input {
  width: 14px;
  height: 14px;
  margin: 0;
}

.process-section {
  background: var(--opr-paper-2);
}

.timeline-list--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--opr-line);
}

.timeline-list--wide article {
  position: relative;
  grid-template-columns: 72px 1fr;
  align-items: start;
  padding: 30px;
  border-right: 1px solid var(--opr-line);
  border-bottom: 1px solid var(--opr-line);
}

.timeline-list--wide article:nth-child(even) {
  border-right: 0;
}

.timeline-list__marker {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 154, 82, 0.65);
  border-radius: 50%;
  color: var(--opr-gold);
}

.timeline-list__marker > span {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 27px;
  height: 27px;
  font-size: 10px;
}

.timeline-list__marker > svg,
.timeline-list__marker > .opr-icon-img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.timeline-list__marker > svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-row article {
  position: relative;
}

.step-row article:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  z-index: 2;
  top: 42px;
  right: -25px;
  width: 48px;
  color: var(--opr-gold);
  font-size: 28px;
  line-height: 1;
  text-align: center;
}

.procedure-section {
  background: var(--opr-ink);
  color: #fff;
}

.procedure-section .section-kicker h2 {
  color: #fff;
}

.procedure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.procedure-grid article {
  position: relative;
  padding: 38px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.procedure-grid article:last-child {
  border-right: 0;
}

.procedure-grid article > span {
  color: var(--opr-gold);
  font-family: var(--opr-serif);
  font-size: 42px;
}

.procedure-grid svg {
  width: 42px;
  height: 42px;
  margin-left: 18px;
  color: var(--opr-gold);
}

.procedure-grid .opr-icon-img {
  width: 42px;
  height: 42px;
  margin-left: 18px;
  object-fit: contain;
}

.procedure-grid h3 {
  margin: 24px 0 10px;
  font-family: var(--opr-serif);
  font-size: 25px;
}

.procedure-grid p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.profile-help__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: center;
}

.profile-help figure {
  min-height: 560px;
  margin: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  background: var(--opr-ink);
}

.profile-help figure img {
  max-height: 560px;
  object-fit: contain;
  object-position: bottom center;
}

.profile-help ul {
  display: grid;
  gap: 9px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.profile-help li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.profile-help li svg {
  width: 20px;
  height: 20px;
  color: var(--opr-gold);
}

.consultation-banner {
  padding-block: 26px;
  background: var(--opr-ink);
  color: #fff;
}

.consultation-banner__inner {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 22px;
}

.consultation-banner__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--opr-gold);
  color: var(--opr-ink);
}

.consultation-banner__icon svg {
  width: 25px;
  height: 25px;
}

.consultation-banner h2 {
  margin: 0;
  font-family: var(--opr-serif);
  font-size: 27px;
}

.consultation-banner p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.decision-cta {
  padding-block: 48px;
  background: var(--opr-ink);
  color: #fff;
}

.decision-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.decision-cta h2 {
  margin: 0;
  font-family: var(--opr-serif);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.decision-cta ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-cta li,
.decision-cta__grid > div:last-child a {
  display: flex;
  align-items: center;
  gap: 9px;
}

.decision-cta li svg,
.decision-cta__grid > div:last-child svg {
  width: 19px;
  height: 19px;
  color: var(--opr-gold);
}

.decision-cta__grid > div:last-child {
  display: grid;
  gap: 10px;
}

@media (max-width: 1120px) {
  .service-mini-grid--wide,
  .benefit-row--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-mini-grid--wide article:nth-child(even),
  .benefit-row--four .benefit-item:nth-child(even) {
    border-right: 0;
  }

  .message-strip__inner,
  .profile-help__grid,
  .decision-cta__grid {
    grid-template-columns: 1fr;
  }

  .step-row article::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero--landing .hero__detail {
    font-size: 13px;
  }

  .service-mini-grid--wide,
  .benefit-row--four,
  .timeline-list--wide,
  .procedure-grid,
  .message-strip .wpforms-field-container,
  .message-strip .fallback-form {
    grid-template-columns: 1fr;
  }

  .service-mini-grid--wide article,
  .benefit-row--four .benefit-item,
  .timeline-list--wide article,
  .procedure-grid article {
    min-height: auto;
    border-right: 0;
  }

  .message-strip__inner {
    gap: 24px;
  }

  .message-strip .wpforms-submit,
  .message-strip .fallback-form button {
    width: 100%;
  }

  .message-strip .wpforms-submit-container {
    margin-top: 12px !important;
  }

  .profile-help__grid {
    gap: 32px;
  }

  .profile-help figure {
    min-height: 420px;
  }

  .profile-help figure img {
    max-height: 420px;
  }

  .consultation-banner__inner {
    grid-template-columns: 48px 1fr;
  }

  .consultation-banner .opr-btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* Round 3 home fidelity pass against home.jpg */
.site-header {
  background: #06111c;
}

.header-inner {
  min-height: 60px;
  grid-template-columns: minmax(360px, 430px) 1fr auto;
  gap: 22px;
}

.brand {
  display: block;
  align-items: center;
  width: min(400px, 30vw);
  min-width: 0;
}

.brand__image--r4 {
  width: 100%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
  opacity: 1;
}

.brand__opr,
.brand__zych {
  display: inline-grid;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1;
  white-space: nowrap;
}

.brand__opr {
  grid-template-columns: 44px auto;
  gap: 9px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand__circle {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1.4px solid rgba(255, 255, 255, 0.82);
  border-right-color: transparent;
  border-radius: 50%;
}

.brand__circle::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 17px;
  width: 8px;
  height: 8px;
  border: 1.2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
}

.brand__zych {
  gap: 7px;
  justify-items: center;
}

.brand__zych strong {
  font-family: var(--opr-sans);
  font-size: 33px;
  font-weight: 300;
  letter-spacing: 0.11em;
}

.brand__zych small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.site-nav {
  gap: 23px;
  font-size: 12px;
}

.site-nav a,
.nav-dropdown__trigger {
  padding-block: 22px;
}

.site-nav > a::after,
.nav-dropdown__trigger::after {
  bottom: 15px;
}

.header-actions {
  gap: 14px;
}

.header-linkedin {
  width: 26px;
  height: 26px;
  font-size: 13px;
}

.header-actions .opr-btn--small {
  min-height: 40px;
  padding-inline: 24px;
  font-size: 11px;
}

.hero--home {
  min-height: 600px;
  background: #06111c;
  overflow-x: clip;
}

.hero--home .hero__bg {
  background:
    linear-gradient(90deg, rgba(6, 17, 28, 0.96) 0%, rgba(6, 17, 28, 0.78) 42%, rgba(6, 17, 28, 0.28) 100%);
}

.hero--home .hero__bg img {
  object-position: center 42%;
  opacity: 0.46;
  filter: saturate(0.62) contrast(0.95);
}

.hero--home::after {
  background:
    radial-gradient(circle at 50% 52%, rgba(201, 154, 82, 0.1), transparent 19%),
    linear-gradient(180deg, rgba(6, 17, 28, 0) 82%, rgba(6, 17, 28, 0.7) 100%);
}

.hero--home .hero__grid {
  min-height: 600px;
  grid-template-columns: minmax(0, 730px) minmax(340px, 1fr);
  align-items: center;
  gap: 20px;
  padding-block: 0;
}

.hero--home .hero__content {
  max-width: 730px;
  padding-block: 34px;
}

.hero--home .hero__eyebrow {
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.13em;
}

.hero--home h1 {
  max-width: 760px;
  font-size: clamp(40px, 3.65vw, 53px);
  line-height: 1.05;
}

.hero--home h1 span {
  display: block;
}

.hero--home .hero__lead {
  max-width: 510px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.55;
}

.hero--home .hero__actions {
  margin-top: 26px;
  gap: 16px;
}

.hero--home .opr-btn {
  min-height: 48px;
  padding-inline: 24px;
  font-size: 12px;
}

.hero--home .hero__portrait {
  min-height: 600px;
  height: 600px;
  width: calc(100% + max(40px, calc((100vw - 1180px) / 2)));
  margin-right: calc(-1 * max(40px, calc((100vw - 1180px) / 2)));
}

.hero--home .hero__portrait--reference {
  background-size: auto 110%;
  background-position: right bottom;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 100%);
}

.hero--home .hero__portrait--reference::before {
  height: 28%;
  background: linear-gradient(180deg, rgba(6, 17, 28, 0), rgba(6, 17, 28, 0.62));
}

.hero--home .hero__portrait--reference::after {
  width: 32%;
  background: linear-gradient(90deg, rgba(6, 17, 28, 0.92), rgba(6, 17, 28, 0));
}

.specializations {
  padding-block: 36px 38px;
}

.specialization-card {
  min-height: 306px;
  padding: 38px 30px 34px;
}

.specialization-card h2,
.specialization-card h3 {
  margin-top: 24px;
  font-size: 25px;
}

.specialization-card p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.75;
}

.trust-strip {
  background: #06111c;
}

.trust-strip__grid {
  width: min(1180px, calc(100% - 40px));
}

.trust-strip__grid div {
  min-height: 68px;
  grid-template-columns: 48px 1fr;
  gap: 13px;
  padding: 14px 28px;
}

.trust-strip__grid div:first-child {
  padding-left: 0;
}

.trust-strip__grid div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-strip i {
  width: 38px;
  height: 38px;
}

.trust-strip p {
  display: grid;
  gap: 4px;
  margin: 0;
  line-height: 1.12;
}

.trust-strip strong {
  color: var(--opr-white);
  font-family: var(--opr-serif);
  font-size: 22px;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.25;
}

.article-feature-grid {
  gap: 26px;
}

.contact-band {
  grid-template-columns: 34% 25% 41%;
  min-height: 286px;
  background: #fbfaf7;
}

.contact-band__image {
  height: 100%;
  overflow: hidden;
}

.contact-band__image img {
  display: block;
  height: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.contact-band__copy {
  align-self: center;
  padding: 34px 36px;
}

.contact-band__copy > p {
  margin-bottom: 10px;
  font-size: 11px;
}

.contact-band h2 {
  max-width: 290px;
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.06;
}

.contact-band ul {
  margin-top: 20px;
  gap: 8px;
}

.contact-band li {
  gap: 8px;
  font-size: 12px;
  line-height: 1.35;
}

.contact-band li svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-band .contact-form-shell {
  padding: 34px 36px 28px 22px;
}

.contact-band .fallback-form {
  gap: 8px;
}

.contact-band .fallback-form input,
.contact-band .fallback-form textarea {
  min-height: 35px;
  padding: 8px 12px !important;
  font-size: 12px !important;
  background: #fff !important;
}

.contact-band .fallback-form textarea {
  min-height: 78px;
}

.contact-band .fallback-form label.form-consent {
  grid-template-columns: 14px 1fr;
  align-items: start;
  gap: 7px !important;
  font-size: 10px !important;
  line-height: 1.25;
  color: var(--opr-muted);
}

.form-consent input {
  width: 12px !important;
  height: 12px;
  min-height: 12px !important;
  margin: 2px 0 0;
  padding: 0 !important;
}

.contact-band .fallback-form button {
  justify-self: end;
  min-height: 40px;
  min-width: 180px;
  padding-inline: 20px;
  font-size: 11px;
}

.about-process {
  grid-template-columns: 48.5% 51.5%;
  min-height: 430px;
}

.about-process__about {
  min-height: 430px;
  grid-template-columns: minmax(300px, 0.98fr) minmax(250px, 0.82fr);
  align-items: end;
  padding: 48px 0 0 max(40px, calc((100vw - 1180px) / 2));
  gap: 18px;
}

.about-process__about h2 {
  max-width: 390px;
  font-size: clamp(28px, 2.55vw, 36px);
  line-height: 1.08;
}

.about-process__about p:not(.section-label) {
  max-width: 390px;
  font-size: 13px;
  line-height: 1.68;
}

.about-process__portrait {
  position: relative;
  align-self: end;
  margin: 0 0 0 -24px;
  min-height: 430px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
}

.about-process__portrait::before {
  display: none;
}

.about-process__portrait img {
  position: relative;
  z-index: 1;
  height: 430px;
  max-height: 430px;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: none;
  mix-blend-mode: normal;
}

.about-process__steps {
  min-height: 430px;
  padding: 56px max(40px, calc((100vw - 1180px) / 2)) 48px 64px;
  background: #fbfaf7;
}

.about-process__steps h2 {
  font-size: clamp(30px, 2.9vw, 40px);
  line-height: 1.12;
}

.process-grid {
  gap: 30px;
  margin-top: 36px;
}

.process-grid article {
  position: relative;
}

.process-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 31px;
  right: -23px;
  width: 38px;
  height: 1px;
  background: rgba(201, 154, 82, 0.45);
}

.process-grid span {
  font-size: 50px;
}

.process-grid h3 {
  margin-top: 22px;
  font-size: 20px;
}

.process-grid p {
  margin: 0;
  color: var(--opr-muted);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 1120px) {
  .header-inner {
    min-height: 68px;
    grid-template-columns: minmax(240px, 1fr) auto;
  }

  .brand {
    gap: 18px;
    width: min(360px, 44vw);
  }

  .brand__zych strong {
    font-size: 28px;
  }

  .hero--home,
  .hero--home .hero__grid {
    min-height: 560px;
  }

  .hero--home .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero--home .hero__portrait {
    min-height: 330px;
    height: 330px;
  }

  .contact-band,
  .about-process {
    grid-template-columns: 1fr;
  }

  .contact-band .contact-form-shell {
    padding: 28px 36px 34px;
  }

  .about-process__about {
    padding-left: 40px;
  }

  .about-process__steps {
    padding-right: 40px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 64px;
  }

  .brand {
    gap: 12px;
    width: min(250px, 62vw);
  }

  .brand__opr {
    grid-template-columns: 34px auto;
    gap: 7px;
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  .brand__circle {
    width: 32px;
    height: 32px;
  }

  .brand__circle::after {
    left: 13px;
    top: 13px;
    width: 6px;
    height: 6px;
  }

  .brand__zych strong {
    font-size: 22px;
  }

  .brand__zych small {
    font-size: 6px;
  }

  .hero--home,
  .hero--home .hero__grid {
    min-height: auto;
  }

  .hero--home .hero__grid {
    display: block;
    padding-block: 54px 0;
  }

  .hero--home h1 {
    font-size: 42px;
  }

  .hero--home .hero__portrait {
    min-height: 310px;
    height: 310px;
    margin-inline: -14px;
  }

  .hero--home .hero__portrait--reference {
    background-size: auto 105%;
    background-position: 54% bottom;
  }

  .trust-strip__grid {
    width: min(100% - 28px, 1180px);
  }

  .trust-strip__grid div {
    border-right: 0;
    border-bottom-color: rgba(255, 255, 255, 0.09);
    padding: 14px 0;
  }

  .contact-band {
    min-height: auto;
  }

  .contact-band__image img {
    min-height: 220px;
    max-height: 260px;
  }

  .contact-band__copy {
    padding: 34px 20px 22px;
  }

  .contact-band h2 {
    max-width: none;
    font-size: 34px;
  }

  .contact-band .contact-form-shell {
    padding: 14px 20px 34px;
  }

  .contact-band .fallback-form button {
    justify-self: stretch;
  }

  .about-process__about {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 46px 24px 0;
  }

  .about-process__portrait {
    width: calc(100% + 48px);
    min-height: 400px;
    height: 400px;
    margin: 34px -24px 0;
  }

  .about-process__portrait img {
    width: 100%;
    height: 400px;
    max-height: none;
    object-fit: cover;
    object-position: 50% 16%;
  }

  .about-process__steps {
    min-height: auto;
    padding: 48px 24px;
  }

  .process-grid article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 1120px) {
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 1px);
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 16px;
  }

  .site-nav.is-open {
    display: grid;
    gap: 6px;
    justify-content: stretch;
  }

  .site-nav a,
  .nav-dropdown__trigger {
    width: 100%;
    padding: 13px 12px;
    border-radius: 4px;
    text-align: left;
  }

  .nav-dropdown__panel {
    position: static;
    width: auto;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 0 0 14px;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: max-height 220ms ease, opacity 160ms ease, margin 160ms ease;
  }

  .nav-dropdown:hover .nav-dropdown__panel,
  .nav-dropdown:focus-within .nav-dropdown__panel {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown__panel {
    max-height: 440px;
    margin-top: 4px;
    padding-top: 4px;
    padding-bottom: 6px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown__panel a {
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.35;
  }
}

@media (max-width: 760px) {
  .site-nav {
    left: 0;
    right: 0;
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  }

  .contact-page-form,
  .contact-card {
    padding: 30px 22px;
  }

  .contact-page-form .fallback-form {
    grid-template-columns: 1fr;
  }

  .contact-page-form .wpforms-field-container,
  .site-footer .wpforms-field-container {
    grid-template-columns: 1fr;
  }

  .contact-page-form .wpforms-field,
  .site-footer .wpforms-field {
    grid-column: auto !important;
  }

  .contact-page-form .fallback-form label,
  .contact-page-form .fallback-form button {
    grid-column: auto;
  }

  .contact-page-form .fallback-form button {
    width: 100%;
  }

  .faq-item summary {
    min-height: auto;
    grid-template-columns: 1fr 30px;
    padding: 20px 18px;
  }

  .faq-item summary span {
    font-size: 23px;
  }

  .faq-item summary i {
    width: 30px;
    height: 30px;
  }

  .faq-item__content {
    padding: 20px 18px 24px;
  }
}

/* 2026-07-26 client feedback and testament campaign landing. */
.testament-page {
  background: var(--opr-white);
}

.testament-page svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testament-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--opr-ink);
  color: #fff;
}

.testament-hero__media,
.testament-hero__shade {
  position: absolute;
  inset: 0;
  margin: 0;
}

.testament-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% center;
}

.testament-hero__shade {
  background:
    linear-gradient(90deg, rgba(4, 18, 30, 0.98) 0%, rgba(4, 18, 30, 0.94) 34%, rgba(4, 18, 30, 0.64) 55%, rgba(4, 18, 30, 0.14) 78%, rgba(4, 18, 30, 0.32) 100%),
    linear-gradient(0deg, rgba(4, 18, 30, 0.54), transparent 42%);
}

.testament-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.testament-hero__content {
  width: min(680px, 55%);
  padding-block: 72px 52px;
}

.testament-hero h1 {
  max-width: 680px;
  margin: 14px 0 22px;
  font-family: var(--opr-serif);
  font-size: clamp(48px, 4.45vw, 64px);
  font-weight: 600;
  line-height: 0.99;
}

.testament-hero h1 span,
.testament-hero h1 strong {
  display: block;
}

.testament-hero h1 strong {
  margin-top: 10px;
  color: var(--opr-gold);
  font-size: 0.72em;
  font-weight: 600;
  line-height: 1.08;
}

.testament-hero__lead {
  max-width: 565px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.testament-hero .hero__actions {
  margin-top: 28px;
}

.testament-hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.testament-hero__assurances li {
  display: flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
}

.testament-hero__assurances svg {
  width: 22px;
  height: 22px;
  color: var(--opr-gold);
}

.testament-hero__assurances .opr-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.testament-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.testament-intro h2 {
  margin: 0 0 24px;
  font-family: var(--opr-serif);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
}

.testament-intro p {
  margin: 0 0 17px;
  color: var(--opr-muted);
  line-height: 1.78;
}

.testament-intro figure {
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
}

.testament-intro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testament-section-intro {
  max-width: 720px;
  margin: 18px auto 42px;
  color: var(--opr-muted);
  text-align: center;
}

.testament-conditions__grid,
.testament-bases__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--opr-line);
  border-bottom: 1px solid var(--opr-line);
}

.testament-conditions__grid article,
.testament-bases__grid article {
  min-width: 0;
  padding: 34px 27px;
  border-right: 1px solid var(--opr-line);
  text-align: center;
}

.testament-conditions__grid article:last-child,
.testament-bases__grid article:last-child {
  border-right: 0;
}

.testament-icon {
  width: 60px;
  height: 60px;
  display: inline-grid;
  place-items: center;
  color: var(--opr-gold);
}

.testament-icon svg,
.testament-icon .opr-icon-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.testament-conditions__grid h3,
.testament-bases__grid h3 {
  margin: 18px 0 12px;
  font-family: var(--opr-serif);
  font-size: 23px;
  line-height: 1.12;
}

.testament-conditions__grid p,
.testament-bases__grid p {
  margin: 0;
  color: var(--opr-muted);
  font-size: 14px;
  line-height: 1.65;
}

.testament-bases__grid article {
  padding-inline: 25px;
}

.testament-bases__grid h3 {
  font-size: 21px;
}

.testament-process {
  background: var(--opr-ink);
  color: #fff;
}

.testament-process .section-kicker h2 {
  color: #fff;
}

.testament-process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px;
  margin-top: 52px;
}

.testament-process__grid article {
  position: relative;
  text-align: center;
}

.testament-process__grid article:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 43px;
  right: -50px;
  color: var(--opr-gold);
  font-size: 35px;
  line-height: 1;
}

.testament-process__marker {
  position: relative;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 0 auto 23px;
  border: 1px solid rgba(201, 154, 82, 0.72);
  border-radius: 50%;
  color: var(--opr-gold);
}

.testament-process__marker b {
  position: absolute;
  top: -11px;
  left: -11px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--opr-gold);
  color: var(--opr-ink);
  font-family: var(--opr-serif);
  font-size: 18px;
}

.testament-process__marker svg {
  width: 42px;
  height: 42px;
}

.testament-process__grid h3 {
  margin: 0 0 12px;
  color: var(--opr-gold);
  font-family: var(--opr-serif);
  font-size: 25px;
}

.testament-process__grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.testament-faq__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 45px;
  border-top: 1px solid var(--opr-line);
  border-bottom: 1px solid var(--opr-line);
}

.testament-faq__item {
  min-width: 0;
  border-right: 1px solid var(--opr-line);
}

.testament-faq__item:last-child {
  border-right: 0;
}

.testament-faq__item header {
  min-height: 164px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: center;
  padding: 28px 24px;
}

.testament-faq__item h3 {
  margin: 0;
  font-family: var(--opr-serif);
  font-size: 22px;
  line-height: 1.18;
}

.testament-faq__content {
  padding: 0 28px 30px;
}

.testament-faq__content p {
  margin: 0 0 11px;
  color: var(--opr-muted);
  font-size: 14px;
  line-height: 1.65;
}

.testament-decision {
  background: #0a2032;
  color: #fff;
}

.testament-decision__grid {
  min-height: 230px;
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.72fr;
  gap: 54px;
  align-items: center;
  padding-block: 45px;
}

.testament-decision h2 {
  margin: 0;
  font-family: var(--opr-serif);
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.06;
}

.testament-decision__title > p {
  margin: 8px 0 0;
  color: var(--opr-gold);
  font-family: var(--opr-serif);
  font-size: 30px;
}

.testament-decision ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.testament-decision li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.testament-decision li svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: var(--opr-gold);
}

.testament-decision__contact {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.testament-decision__contact > a:not(.opr-btn) {
  display: flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.testament-decision__contact > a:not(.opr-btn) svg {
  width: 22px;
  height: 22px;
  color: var(--opr-gold);
}

@media (max-width: 1120px) {
  .testament-hero__content {
    width: min(640px, 62%);
  }

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

  .testament-conditions__grid article:nth-child(2),
  .testament-bases__grid article:nth-child(2) {
    border-right: 0;
  }

  .testament-conditions__grid article:nth-child(-n+2),
  .testament-bases__grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--opr-line);
  }

  .testament-faq__grid {
    grid-template-columns: 1fr;
  }

  .testament-faq__item {
    border-right: 0;
    border-bottom: 1px solid var(--opr-line);
  }

  .testament-faq__item:last-child {
    border-bottom: 0;
  }

  .testament-faq__item header {
    min-height: 0;
  }

  .testament-decision__grid {
    grid-template-columns: 1fr 1fr;
  }

  .testament-decision__contact {
    grid-column: 1 / -1;
    grid-template-columns: auto auto auto;
    align-items: center;
  }
}

@media (max-width: 760px) {
  .testament-hero,
  .testament-hero__inner {
    min-height: 690px;
  }

  .testament-hero__media img {
    object-position: 62% center;
  }

  .testament-hero__shade {
    background:
      linear-gradient(90deg, rgba(4, 18, 30, 0.97), rgba(4, 18, 30, 0.7)),
      linear-gradient(0deg, rgba(4, 18, 30, 0.92) 0%, rgba(4, 18, 30, 0.3) 58%, rgba(4, 18, 30, 0.48) 100%);
  }

  .testament-hero__inner {
    align-items: end;
  }

  .testament-hero__content {
    width: 100%;
    padding-block: 82px 38px;
  }

  .testament-hero h1 {
    font-size: 44px;
  }

  .testament-hero__lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .testament-hero .hero__actions {
    display: grid;
  }

  .testament-hero .opr-btn {
    width: 100%;
    justify-content: center;
  }

  .testament-hero__assurances {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .testament-intro__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .testament-intro figure {
    aspect-ratio: 4 / 3;
  }

  .testament-conditions__grid,
  .testament-bases__grid,
  .testament-process__grid {
    grid-template-columns: 1fr;
  }

  .testament-conditions__grid article,
  .testament-bases__grid article {
    border-right: 0;
    border-bottom: 1px solid var(--opr-line);
  }

  .testament-conditions__grid article:last-child,
  .testament-bases__grid article:last-child {
    border-bottom: 0;
  }

  .testament-process__grid {
    gap: 44px;
  }

  .testament-process__grid article:not(:last-child)::after {
    display: none;
  }

  .testament-faq__item header {
    grid-template-columns: 50px 1fr;
    padding: 24px 18px;
  }

  .testament-faq__item header .testament-icon {
    width: 50px;
    height: 50px;
  }

  .testament-faq__item header .testament-icon svg,
  .testament-faq__item header .testament-icon .opr-icon-img {
    width: 42px;
    height: 42px;
  }

  .testament-faq__content {
    padding: 0 20px 26px;
  }

  .testament-decision__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .testament-decision__contact {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}
