:root {
  color-scheme: light;
  --ink: #111821;
  --muted: #5d6875;
  --paper: #f7f4ee;
  --white: #ffffff;
  --navy: #0b1828;
  --navy-2: #132a3f;
  --steel: #dbe3e6;
  --line: #dde4e2;
  --gold: #b98635;
  --gold-2: #e5bf78;
  --green: #204f46;
  --teal: #2f756a;
  --danger: #a83232;
  --shadow: 0 24px 70px rgba(14, 24, 36, 0.14);
  --radius: 8px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

main,
:target,
.section,
.page-hero,
.hero,
.image-break {
  scroll-margin-top: 126px;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(17, 24, 33, 0.08);
  backdrop-filter: blur(18px);
}

.topline {
  background: var(--navy);
  color: #eef5f4;
  font-size: 0.78rem;
}

.topline__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 8px;
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__mark {
  width: clamp(42px, 4.2vw, 56px);
  height: clamp(42px, 4.2vw, 56px);
  object-fit: contain;
  flex: 0 0 auto;
}

.brand__wordmark {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand__name {
  color: var(--ink);
  font-size: clamp(1.22rem, 2.1vw, 1.72rem);
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand__tag {
  color: var(--gold);
  font-size: clamp(0.52rem, 1.2vw, 0.68rem);
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a,
.mobile-nav a {
  text-decoration: none;
  font-weight: 750;
}

.desktop-nav a {
  color: #25313e;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.94rem;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: #eef3f2;
  outline: none;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 19px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button--small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.button--primary {
  background: var(--gold);
  color: #15120b;
  box-shadow: 0 12px 28px rgba(185, 134, 53, 0.28);
}

.button--secondary {
  background: #eef4f2;
  color: var(--green);
  border-color: #cbdad6;
}

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

.button--outline,
.button--outline-light {
  background: transparent;
  border-color: currentColor;
}

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

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle__lines::before {
  transform: translateY(-7px);
}

.menu-toggle__lines::after {
  transform: translateY(5px);
}

.menu-open .menu-toggle__lines {
  transform: rotate(45deg);
}

.menu-open .menu-toggle__lines::before {
  transform: translateY(0) rotate(90deg);
}

.menu-open .menu-toggle__lines::after {
  opacity: 0;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 112px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  scroll-margin-top: 116px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 16, 27, 0.98) 0%, rgba(8, 16, 27, 0.84) 35%, rgba(8, 16, 27, 0.32) 68%, rgba(8, 16, 27, 0.08) 100%),
    url("/assets/ramses-guard-hero.jpg") 58% center / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 105px;
  background: linear-gradient(0deg, rgba(11, 24, 40, 0.9), rgba(11, 24, 40, 0));
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  padding-block: clamp(96px, 12vh, 128px) clamp(94px, 12vh, 132px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4rem);
}

h3 {
  font-size: 1.2rem;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: #d9e5e4;
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 52px;
  max-width: 760px;
}

.proof-item {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.proof-item strong {
  display: block;
  color: var(--white);
  line-height: 1.15;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: #c5d3d0;
  font-size: 0.9rem;
}

.section {
  padding-block: 92px;
}

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

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-intro p:not(.eyebrow),
.page-hero p,
.split-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section--dark .section-intro p:not(.eyebrow),
.section--dark .split-content p {
  color: #c9d5d3;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.image-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.image-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(22, 31, 39, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.image-card:hover,
.image-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(185, 134, 53, 0.5);
  box-shadow: 0 26px 62px rgba(22, 31, 39, 0.16);
}

.image-card__media {
  display: block;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: var(--navy);
}

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

.image-card:hover .image-card__media img,
.image-card:focus-within .image-card__media img {
  transform: scale(1.045);
}

.image-card__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
  flex: 1;
}

.image-card__body .text-link {
  grid-column: 2;
}

.concept-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: #edf4f2;
  color: var(--green);
  flex: 0 0 auto;
}

.concept-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(22, 31, 39, 0.07);
}

.value-card p,
.step-card p {
  color: var(--muted);
}

.text-link {
  margin-top: auto;
  color: var(--green);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.section-actions {
  margin-top: 30px;
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 33, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.featured-article__media {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: var(--navy);
}

.featured-article__media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.featured-article__body {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 54px);
}

.featured-article__body h2,
.featured-article__body p {
  margin: 0;
}

.featured-article__body a:not(.button),
.blog-card h3 a,
.article-header h1 a {
  text-decoration: none;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(22, 31, 39, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(185, 134, 53, 0.5);
  box-shadow: 0 26px 62px rgba(22, 31, 39, 0.16);
}

.blog-card__media {
  display: block;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  background: var(--navy);
}

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

.blog-card:hover .blog-card__media img,
.blog-card:focus-within .blog-card__media img {
  transform: scale(1.045);
}

.blog-card__body {
  display: grid;
  gap: 13px;
  padding: 22px;
  flex: 1;
}

.blog-card__body h3,
.blog-card__body p {
  margin: 0;
}

.blog-card__meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-card__meta span {
  color: var(--green);
  text-transform: uppercase;
}

.blog-card__meta span,
.article-meta span {
  letter-spacing: 0;
}

.blog-card--compact .blog-card__body {
  padding: 18px;
}

.blog-card--compact h3 {
  font-size: 1.05rem;
}

.article-header {
  background: linear-gradient(135deg, var(--navy), #143831);
  color: var(--white);
}

.article-header__inner {
  max-width: 880px;
  padding-block: 76px 68px;
}

.article-header h1 {
  margin: 0;
  max-width: 850px;
}

.article-header p:not(.eyebrow) {
  max-width: 760px;
  color: #d4dfdd;
  font-size: 1.1rem;
}

.article-header .article-meta {
  color: #c9d5d3;
}

.article-featured-image {
  width: min(calc(100% - 40px), 1040px);
  margin: -34px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.article-featured-image img {
  width: 100%;
  aspect-ratio: 1.78 / 1;
  height: auto;
  object-fit: cover;
}

.article-body {
  width: min(calc(100% - 40px), 760px);
  margin-inline: auto;
  padding-block: 54px 82px;
}

.article-body h2 {
  margin-top: 42px;
}

.article-body p {
  color: #354250;
  font-size: 1.05rem;
}

.article-link-panel,
.article-cta {
  margin-top: 46px;
  padding: 28px;
  border-radius: var(--radius);
}

.article-link-panel {
  border: 1px solid var(--line);
  background: var(--paper);
}

.article-link-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.article-cta {
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: var(--white);
}

.article-cta h2,
.article-cta p {
  color: inherit;
}

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

.value-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.value-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(22, 31, 39, 0.07);
  transition: transform 160ms ease, border-color 160ms ease;
}

.value-row:hover {
  transform: translateX(3px);
  border-color: rgba(185, 134, 53, 0.45);
}

.value-row p {
  margin-bottom: 0;
}

.value-card,
.step-card {
  padding: 26px;
}

.value-card__icon,
.step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 22px;
}

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

.split--image-left,
.split--values {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.split--values {
  align-items: start;
  gap: 36px;
}

.photo-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--navy);
}

.photo-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 24, 40, 0), rgba(11, 24, 40, 0.18));
  content: "";
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  height: auto;
  object-fit: cover;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 850;
}

.feature-panel {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: var(--white);
  padding: 34px;
  box-shadow: var(--shadow);
}

.feature-panel ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.feature-panel li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-panel li::before {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  content: "";
  flex: 0 0 auto;
}

.page-hero {
  background: linear-gradient(135deg, var(--navy), #163b36);
  color: var(--white);
  overflow: hidden;
}

.page-hero__inner {
  padding-block: 82px;
  max-width: 850px;
}

.page-hero--photo {
  position: relative;
  background: var(--navy);
}

.page-hero--photo::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 16, 27, 0.97), rgba(8, 16, 27, 0.74) 44%, rgba(8, 16, 27, 0.38)),
    var(--page-hero-image) center / cover no-repeat;
  content: "";
}

.page-hero--photo .page-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: grid;
  align-content: center;
}

.page-hero p:not(.eyebrow) {
  color: #d4dfdd;
}

.breadcrumb {
  padding-block: 18px 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #9aa6af;
}

.quote-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 36px;
  align-items: start;
}

.quote-aside {
  position: sticky;
  top: 130px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.quote-aside p {
  color: #d4dfdd;
}

.quote-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.image-break {
  position: relative;
  min-height: 520px;
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.image-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break__overlay {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  padding-block: 90px;
  background: linear-gradient(90deg, rgba(7, 17, 29, 0.95), rgba(7, 17, 29, 0.66) 46%, rgba(7, 17, 29, 0.24));
}

.image-break h2,
.image-break p {
  max-width: 620px;
}

.image-break p:not(.eyebrow) {
  color: #d6e1df;
  font-size: 1.08rem;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.process-timeline::before {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 36px;
  height: 1px;
  background: linear-gradient(90deg, rgba(229, 191, 120, 0.2), rgba(229, 191, 120, 0.9), rgba(229, 191, 120, 0.2));
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.process-step .step-number {
  width: auto;
  height: auto;
  margin-bottom: 18px;
  place-items: start;
  background: transparent;
  color: var(--gold-2);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.process-step .concept-icon {
  margin-bottom: 18px;
  background: rgba(229, 191, 120, 0.14);
  color: var(--gold-2);
}

.process-step p {
  color: #cbd7d5;
  margin-bottom: 0;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd9d8;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(185, 134, 53, 0.36);
  outline-offset: 2px;
}

.field-error {
  min-height: 18px;
  color: var(--danger);
  font-weight: 750;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.form-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  margin-top: 18px;
  min-height: 24px;
  font-weight: 850;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: var(--danger);
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(11, 24, 40, 0.97), rgba(32, 79, 70, 0.88)),
    url("/assets/security-quote-cta-background.jpg") center / cover no-repeat;
  color: var(--white);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 74px;
}

.cta-band p:not(.eyebrow) {
  color: #d6e1df;
  margin-bottom: 0;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.site-footer {
  background: #07111d;
  color: #eaf1f0;
  padding-block: 64px 28px;
  border-top: 4px solid rgba(185, 134, 53, 0.8);
}

.site-footer p,
.site-footer a {
  color: #b9c7c5;
}

.brand--footer {
  align-items: center;
}

.brand--footer .brand__mark {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.32));
}

.brand--footer .brand__name {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
}

.footer-grid h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-block: 8px;
  text-decoration: none;
}

.footer-grid .button {
  display: inline-flex;
  margin-top: 8px;
}

.site-footer .button {
  color: var(--green);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold-2);
}

.footer-copy {
  max-width: 380px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9fb0ad;
  font-size: 0.9rem;
}

.footer-bottom a {
  margin-left: 14px;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mobile-nav {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 180ms ease;
  }

  .menu-open .mobile-nav {
    grid-template-rows: 1fr;
    border-top: 1px solid rgba(17, 24, 33, 0.08);
  }

  .mobile-nav__inner {
    min-height: 0;
    display: grid;
    gap: 6px;
    padding-block: 0;
  }

  .menu-open .mobile-nav__inner {
    padding-block: 14px 20px;
  }

  .mobile-nav a {
    padding: 14px;
    border-radius: var(--radius);
    background: #f3f6f5;
  }

  .mobile-nav .button {
    margin-top: 6px;
    background: var(--gold);
    color: #15120b;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding-block: 74px 96px;
  }

  .hero-proof,
  .card-grid,
  .image-card-grid,
  .blog-card-grid,
  .value-grid,
  .steps-grid,
  .process-timeline,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split--image-left,
  .split--values,
  .featured-article,
  .quote-shell {
    grid-template-columns: 1fr;
  }

  .featured-article__media img {
    min-height: 320px;
  }

  .process-timeline::before {
    display: none;
  }

  .quote-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topline__inner {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
  }

  .header-actions .button {
    display: none;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 16, 27, 0.76), rgba(8, 16, 27, 0.95)),
      url("/assets/ramses-guard-hero.jpg") 64% center / cover no-repeat;
  }

  .hero__inner {
    padding-block: 72px 78px;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .hero-proof,
  .card-grid,
  .image-card-grid,
  .blog-card-grid,
  .value-grid,
  .steps-grid,
  .process-timeline,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 64px;
  }

  .page-hero__inner {
    padding-block: 54px;
  }

  .page-hero--photo .page-hero__inner {
    min-height: 360px;
  }

  .image-card__media {
    aspect-ratio: 1.65 / 1;
  }

  .blog-card__media {
    aspect-ratio: 1.7 / 1;
  }

  .image-card__body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .featured-article__media img {
    min-height: auto;
    aspect-ratio: 1.55 / 1;
  }

  .featured-article__body,
  .blog-card__body,
  .article-link-panel,
  .article-cta {
    padding: 22px;
  }

  .article-header__inner {
    padding-block: 56px;
  }

  .article-featured-image {
    width: min(calc(100% - 28px), 1040px);
    margin-top: -24px;
  }

  .article-featured-image img {
    aspect-ratio: 1.35 / 1;
  }

  .article-body {
    width: min(calc(100% - 28px), 760px);
    padding-block: 38px 64px;
  }

  .image-card__body .text-link {
    grid-column: auto;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .image-break {
    min-height: 460px;
  }

  .image-break__overlay {
    padding-block: 64px;
    background: linear-gradient(180deg, rgba(7, 17, 29, 0.74), rgba(7, 17, 29, 0.94));
  }

  .process-step {
    padding: 22px;
  }

  .form-footer,
  .cta-band__inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-form,
  .quote-aside,
  .feature-panel {
    padding: 22px;
  }

  .cta-band__actions,
  .hero-actions {
    display: grid;
  }
}
