:root {
  --navy: #071739;
  --gold: #c89b3c;
  --paper: #f8f7f4;
  --line: #d9d9d9;
  --ink: #14213d;
  --muted: #687083;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 23, 57, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
  line-height: 1.6;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 18ch;
  font-size: clamp(2.25rem, 4.35vw, 4.15rem);
}

h2 {
  font-size: clamp(1.75rem, 3.1vw, 3rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(190px, 300px) 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 8px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(217, 217, 217, 0.65);
  background: rgba(248, 247, 244, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(248, 247, 244, 0.96);
  box-shadow: 0 14px 40px rgba(7, 23, 57, 0.08);
}

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

.brand-logo {
  width: clamp(210px, 21vw, 320px);
  height: 86px;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.18);
  transform-origin: left center;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  color: #30394d;
  font-size: 0.92rem;
  font-weight: 600;
}

.desktop-nav > a,
.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 6px;
}

.desktop-nav > a::after,
.nav-dropdown-trigger::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 0.2s ease;
}

.desktop-nav > a:hover::after,
.nav-dropdown:hover .nav-dropdown-trigger::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  right: -18px;
  left: -18px;
  height: 18px;
  content: "";
}

.nav-dropdown-trigger svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 55;
  display: grid;
  width: min(390px, 88vw);
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(200, 155, 60, 0.28);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(18px);
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-panel a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1px 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid transparent;
  background: rgba(251, 250, 247, 0.48);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.nav-dropdown-panel a:hover {
  border-color: rgba(200, 155, 60, 0.3);
  background: #fbfaf7;
}

.nav-dropdown-panel span {
  display: grid;
  width: 34px;
  height: 34px;
  grid-row: span 2;
  place-items: center;
  border: 1px solid rgba(200, 155, 60, 0.28);
  color: var(--gold);
}

.nav-dropdown-panel strong {
  color: var(--navy);
  font-size: 0.92rem;
}

.nav-dropdown-panel small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.button.primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(200, 155, 60, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.66);
  color: var(--navy);
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
}

.mobile-nav {
  position: fixed;
  top: 94px;
  right: 18px;
  left: 18px;
  z-index: 45;
  display: none;
  padding: 18px;
  border: 1px solid rgba(200, 155, 60, 0.3);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
  gap: 12px;
}

.mobile-services {
  border: 0;
  background: transparent;
}

.mobile-services summary {
  padding: 0;
}

.mobile-services a {
  margin-top: 10px;
  padding-left: 12px;
  color: var(--muted);
}

.hero,
.page-hero,
.split-section,
.section,
.footer {
  padding-right: clamp(18px, 5vw, 80px);
  padding-left: clamp(18px, 5vw, 80px);
}

.hero {
  display: grid;
  min-height: min(760px, calc(100vh - 82px));
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding-top: 36px;
  padding-bottom: 48px;
}

.support-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(200, 155, 60, 0.24);
  border-bottom: 1px solid rgba(200, 155, 60, 0.24);
  background: var(--navy);
}

.support-strip div {
  min-height: 104px;
  padding: 24px clamp(18px, 4vw, 44px);
  border-right: 1px solid rgba(248, 247, 244, 0.12);
}

.support-strip strong {
  display: block;
  color: var(--gold);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.support-strip span {
  display: block;
  margin-top: 8px;
  color: #dce3ee;
  font-size: 0.9rem;
  font-weight: 700;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-text,
.page-hero p,
.section-head p,
.split-copy p {
  max-width: 720px;
  margin-top: 16px;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

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

.trust-list span,
.included-grid div {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #374056;
  font-weight: 600;
}

.trust-list svg,
.included-grid svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(200, 155, 60, 0.35);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 57, 0) 45%, rgba(7, 23, 57, 0.58));
  content: "";
}

.visual-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 18px 22px;
  border: 1px solid rgba(248, 247, 244, 0.45);
  background: rgba(248, 247, 244, 0.14);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.visual-card strong,
.visual-card span {
  display: block;
}

.visual-card strong {
  color: var(--gold);
  font-family: "Times New Roman", Times, serif;
  font-size: 2.6rem;
  line-height: 1;
}

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

.trust-bar div {
  display: flex;
  min-height: 102px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.trust-bar svg,
.card-icon svg {
  color: var(--gold);
}

.section {
  padding-top: clamp(56px, 7vw, 104px);
  padding-bottom: clamp(56px, 7vw, 104px);
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.compact-head {
  max-width: 720px;
}

.tight-section {
  padding-top: clamp(34px, 5vw, 70px);
}

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

.service-card,
.post-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(217, 217, 217, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 247, 0.78)),
    var(--white);
  box-shadow: 0 16px 50px rgba(7, 23, 57, 0.06);
  transition: border 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 155, 60, 0.12));
  content: "";
}

.service-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service-card > *:not(.service-card-link) {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.service-card:hover,
.post-card:hover {
  border-color: rgba(200, 155, 60, 0.65);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(200, 155, 60, 0.35);
  background: #fbfaf7;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.card-main-link {
  display: grid !important;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(200, 155, 60, 0.42);
  background: rgba(200, 155, 60, 0.08);
  color: var(--gold) !important;
}

.service-card p,
.post-card p {
  margin: 14px 0 18px;
}

.service-outcome {
  padding-top: 12px;
  border-top: 1px solid rgba(217, 217, 217, 0.7);
  color: #30394d;
  font-size: 0.88rem;
  font-weight: 700;
}

.service-more,
.post-card a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(200, 155, 60, 0.3);
  background: rgba(200, 155, 60, 0.08);
  color: var(--navy);
  font-weight: 800;
}

.subservice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0 14px;
}

.subservice-list span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 3px 8px;
  border: 1px solid rgba(200, 155, 60, 0.28);
  background: rgba(248, 247, 244, 0.72);
  color: #344057;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.1;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
  background: var(--white);
}

.profile-section {
  background: linear-gradient(180deg, var(--paper), #ffffff);
}

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

.profile-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(217, 217, 217, 0.85);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 46px rgba(7, 23, 57, 0.055);
}

.profile-card span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(200, 155, 60, 0.34);
  color: var(--gold);
}

.profile-card h3 {
  margin-top: 28px;
}

.profile-card p {
  margin-top: 12px;
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(200, 155, 60, 0.3);
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #313b50;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 14px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 12%, rgba(200, 155, 60, 0.13), transparent 30%),
    linear-gradient(135deg, #071739, #0b1e49 62%, #071739);
}

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-section p {
  color: #cdd5e3;
}

.process-shell {
  position: relative;
}

.process-orbit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 34px;
}

.process-orbit::before {
  position: absolute;
  top: 57px;
  right: 6%;
  left: 6%;
  height: 1px;
  background: rgba(248, 247, 244, 0.2);
  content: "";
}

.process-orbit::after {
  position: absolute;
  top: 56px;
  left: 6%;
  width: 26%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  animation: process-flow 5s ease-in-out infinite;
}

.process-card {
  position: relative;
  min-height: 220px;
  padding: 28px 22px 24px;
  border: 1px solid rgba(248, 247, 244, 0.14);
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(16px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  animation: process-rise 4.8s ease-in-out infinite;
  animation-delay: calc(var(--step) * 0.22s);
}

.process-card:hover {
  border-color: rgba(200, 155, 60, 0.7);
  background: rgba(255, 255, 255, 0.095);
  transform: translateY(-6px);
}

.process-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid rgba(200, 155, 60, 0.72);
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
}

.process-card p {
  margin-top: 16px;
}

@keyframes process-flow {
  0% {
    transform: translateX(0);
    opacity: 0.15;
  }

  35% {
    opacity: 1;
  }

  100% {
    transform: translateX(230%);
    opacity: 0.15;
  }
}

@keyframes process-rise {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.5fr;
  gap: 18px;
  align-items: stretch;
}

.metric,
blockquote {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.metric strong {
  display: block;
  color: var(--navy);
  font-family: "Times New Roman", Times, serif;
  font-size: 3.6rem;
  line-height: 1;
}

.metric span,
cite {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-style: normal;
}

blockquote {
  color: var(--navy);
  font-family: "Times New Roman", Times, serif;
  font-size: 1.65rem;
  line-height: 1.25;
}

.proof-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8f7f4 100%);
}

.proof-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-metric {
  position: relative;
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(200, 155, 60, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 250, 247, 0.78));
  box-shadow: 0 18px 48px rgba(7, 23, 57, 0.075);
  overflow: hidden;
}

.proof-metric::before {
  position: absolute;
  top: -46px;
  right: -42px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(200, 155, 60, 0.22);
  border-radius: 50%;
  content: "";
}

.proof-metric span {
  display: block;
  color: var(--gold);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
}

.proof-metric h3 {
  margin-top: 28px;
}

.proof-metric p {
  margin-top: 12px;
  font-size: 0.92rem;
}

.proof-quote {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid rgba(7, 23, 57, 0.12);
  background: linear-gradient(135deg, rgba(7, 23, 57, 0.96), rgba(12, 32, 75, 0.94));
  color: var(--white);
  box-shadow: var(--shadow);
}

.quote-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(200, 155, 60, 0.45);
  color: var(--gold);
}

.proof-quote blockquote {
  margin: 26px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.proof-quote cite {
  color: #dbe2ee;
}

.proof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.proof-badges span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(248, 247, 244, 0.18);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.accordion {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--navy);
  font-weight: 800;
}

details p {
  padding: 0 24px 24px;
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  background: linear-gradient(180deg, var(--paper), #ffffff);
}

.contact-panel,
.contact-info,
.quick-form {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(200, 155, 60, 0.28);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.form-step {
  display: none;
  gap: 14px;
}

.form-step.active {
  display: grid;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfaf8;
  color: var(--navy);
  font: inherit;
  padding: 14px 15px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.12);
}

.map {
  display: grid;
  min-height: 250px;
  margin-bottom: 30px;
  place-items: center;
  background: linear-gradient(135deg, #071739, #102b63);
  color: var(--white);
  text-align: center;
}

.map span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-info a,
.contact-info p,
.footer a,
.footer span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px clamp(18px, 5vw, 80px) 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: #344057;
}

.breadcrumbs span:last-child {
  color: var(--gold);
}

.crumb-separator {
  color: rgba(104, 112, 131, 0.55);
}

.page-hero {
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 30px;
  align-items: center;
  padding-top: 38px;
  padding-bottom: 40px;
  background: linear-gradient(135deg, #fbfaf7 0%, #f8f7f4 52%, #ffffff 100%);
}

.page-hero.simple {
  min-height: 360px;
  grid-template-columns: 1fr;
}

.page-hero.about-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
}

.page-hero > div {
  max-width: 860px;
}

.hero-banner {
  position: relative;
  height: clamp(138px, 18vw, 220px);
  margin: 18px 0 0;
  border: 1px solid rgba(200, 155, 60, 0.28);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 23, 57, 0.09);
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 23, 57, 0.18), rgba(7, 23, 57, 0.02) 52%, rgba(200, 155, 60, 0.12));
  content: "";
  pointer-events: none;
}

.about-signature {
  padding: 32px;
  border: 1px solid rgba(200, 155, 60, 0.32);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.about-signature span,
.about-signature strong {
  display: block;
}

.about-signature span {
  color: var(--gold);
  font-family: "Times New Roman", Times, serif;
  font-size: 2.1rem;
  line-height: 1;
}

.about-signature strong {
  margin-top: 18px;
  color: var(--white);
}

.about-signature p {
  margin-top: 18px;
  color: #dce3ee;
}

.about-story {
  background: var(--white);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-values article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(217, 217, 217, 0.88);
  background: #fbfaf7;
}

.about-values span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(200, 155, 60, 0.35);
  color: var(--gold);
}

.about-values h3 {
  margin-top: 28px;
}

.about-values p {
  margin-top: 12px;
}

.page-hero h1 {
  max-width: 18ch;
}

.service-meta-row {
  display: grid;
  gap: 10px;
  max-width: 700px;
  margin-top: 22px;
}

.service-meta-row span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #344057;
  font-weight: 700;
}

.service-meta-row svg {
  flex: 0 0 auto;
  color: var(--gold);
}

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

.subservice-detail-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.subservice-detail-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(217, 217, 217, 0.9);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 23, 57, 0.055);
}

.subservice-detail-grid article.subservice-custom {
  border-color: rgba(200, 155, 60, 0.5);
  background: linear-gradient(135deg, #071739 0%, #102b63 100%);
  box-shadow: 0 20px 52px rgba(7, 23, 57, 0.16);
}

.subservice-detail-grid span {
  color: var(--gold);
}

.subservice-detail-grid article.subservice-custom span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(200, 155, 60, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.subservice-detail-grid h3 {
  margin-top: 26px;
}

.subservice-detail-grid p {
  margin: 12px 0 18px;
  font-size: 0.92rem;
}

.subservice-detail-grid a {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
}

.subservice-detail-grid article.subservice-custom h3,
.subservice-detail-grid article.subservice-custom a {
  color: var(--white);
}

.subservice-detail-grid article.subservice-custom p {
  color: #dce3ee;
}

.subservice-detail-grid article.subservice-custom a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(200, 155, 60, 0.62);
  background: rgba(200, 155, 60, 0.16);
}

.included-grid div {
  min-height: 86px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.post-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 20px;
}

.article h1 {
  max-width: 20ch;
}

.article .hero-banner {
  height: clamp(170px, 24vw, 280px);
  margin-bottom: 24px;
}

.article h2 {
  margin-top: 46px;
  font-size: 2.1rem;
}

.article p,
.article li {
  font-size: 1.05rem;
}

.lede {
  margin: 24px 0 36px;
  font-size: 1.3rem !important;
}

.article-cta {
  margin-top: 54px;
  padding: 32px;
  border: 1px solid rgba(200, 155, 60, 0.35);
  background: var(--white);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(40px, 6vw, 74px) clamp(18px, 5vw, 80px);
  border-top: 1px solid rgba(200, 155, 60, 0.22);
  border-bottom: 1px solid rgba(200, 155, 60, 0.22);
  background:
    linear-gradient(135deg, rgba(7, 23, 57, 0.96), rgba(12, 32, 75, 0.94)),
    var(--navy);
}

.final-cta h2 {
  max-width: 760px;
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 14px;
  color: #dce3ee;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer {
  padding-top: 18px;
  padding-bottom: 14px;
  background: #061330;
}

.footer-simple {
  display: grid;
  grid-template-columns: minmax(200px, 340px) 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer-simple nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-simple nav a {
  margin-top: 0;
  color: #dce3ee;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-simple p {
  max-width: 340px;
  margin-top: 4px;
  color: #cbd3df;
  font-size: 0.84rem;
  line-height: 1.35;
}

.footer-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cities span {
  margin-top: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-cities div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-cities a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-top: 0;
  padding: 0 10px;
  border: 1px solid rgba(200, 155, 60, 0.34);
  background: rgba(255, 255, 255, 0.05);
  color: #dce3ee;
  font-size: 0.82rem;
  font-weight: 800;
}

.footer h2 {
  color: var(--white);
  font-family: "Times New Roman", Times, serif;
  font-size: 0.95rem;
}

.footer p {
  max-width: 340px;
  margin-top: 4px;
  color: #cbd3df;
}

.footer .brand-logo {
  width: 180px;
  height: 58px;
  object-position: left center;
  transform: scale(1.02);
  transform-origin: left center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

.footer-bottom span {
  margin-top: 0;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.32);
  overflow: hidden;
}

.whatsapp svg {
  width: 26px;
  height: 26px;
}

.mobile-action {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero,
  .page-hero,
  .page-hero.about-hero,
  .split-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 430px;
  }

  .trust-bar,
  .support-strip,
  .process-orbit,
  .proofs,
  .proof-layout,
  .proof-metrics,
  .profile-grid,
  .about-values,
  .service-grid,
  .blog-grid,
  .included-grid,
  .subservice-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta-actions {
    justify-content: flex-start;
  }

  .process-orbit::before,
  .process-orbit::after {
    display: none;
  }

  blockquote {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  h3 {
    font-size: 1.05rem;
  }

  .site-header {
    min-height: 72px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .brand-logo {
    width: 160px;
    height: 60px;
    transform: scale(1.04);
  }

  .mobile-nav {
    top: 78px;
    right: 12px;
    left: 12px;
    max-height: calc(100vh - 102px);
    padding: 12px;
    overflow: auto;
  }

  .mobile-nav.open {
    gap: 8px;
  }

  .mobile-nav > a,
  .mobile-services summary {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(217, 217, 217, 0.82);
    background: #fbfaf7;
    color: var(--navy);
    font-weight: 800;
  }

  .mobile-services {
    padding: 0;
    border: 1px solid rgba(200, 155, 60, 0.25);
    background: var(--white);
  }

  .mobile-services summary {
    justify-content: space-between;
    border: 0;
    background: rgba(200, 155, 60, 0.12);
    cursor: pointer;
  }

  .mobile-services summary::after {
    content: "+";
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 900;
  }

  .mobile-services[open] summary::after {
    content: "-";
  }

  .mobile-services a {
    display: flex;
    min-height: 46px;
    align-items: center;
    margin-top: 0;
    padding: 0 12px;
    border-top: 1px solid rgba(217, 217, 217, 0.72);
    color: #30394d;
    font-weight: 700;
  }

  .hero,
  .page-hero {
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .hero-banner {
    height: 150px;
    margin-top: 14px;
  }

  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .section-head p,
  .hero-text,
  .page-hero p,
  .split-copy p {
    margin-top: 12px;
    font-size: 0.95rem;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .trust-list,
  .trust-bar,
  .support-strip,
  .process-orbit,
  .proofs,
  .proof-layout,
  .proof-metrics,
  .profile-grid,
  .about-values,
  .service-grid,
  .blog-grid,
  .included-grid,
  .subservice-detail-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar div {
    justify-content: flex-start;
    padding-left: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .support-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(248, 247, 244, 0.12);
  }

  .proof-metric,
  .proof-quote,
  .profile-card,
  .service-card,
  .post-card {
    min-height: auto;
  }

  .service-grid,
  .blog-grid,
  .subservice-detail-grid,
  .included-grid {
    gap: 10px;
  }

  .service-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 40px;
    gap: 8px 10px;
    padding: 15px;
    box-shadow: 0 10px 28px rgba(7, 23, 57, 0.055);
  }

  .service-card:hover,
  .post-card:hover {
    transform: none;
  }

  .service-card-top {
    display: contents;
  }

  .card-icon {
    width: 42px;
    height: 42px;
    grid-column: 1;
    grid-row: 1;
  }

  .card-main-link {
    width: 40px;
    height: 40px;
    grid-column: 3;
    grid-row: 1;
  }

  .service-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    line-height: 1.12;
  }

  .service-card > p {
    grid-column: 1 / -1;
    margin: 4px 0 0;
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .service-outcome {
    display: none;
  }

  .subservice-list {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 8px 0 0;
    padding: 0;
    overflow: visible;
  }

  .subservice-list span {
    min-height: 24px;
    align-items: center;
    padding: 3px 7px;
    border-color: rgba(200, 155, 60, 0.24);
    background: rgba(248, 247, 244, 0.58);
    text-align: left;
    white-space: normal;
    font-size: 0.68rem;
    line-height: 1.16;
  }

  .service-more {
    grid-column: 1 / -1;
    width: fit-content;
    min-height: 30px;
    justify-content: flex-start;
    margin-top: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 0.82rem;
  }

  .subservice-detail-grid article {
    display: grid;
    min-height: auto;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 6px 12px;
    align-items: start;
    padding: 16px;
  }

  .subservice-detail-grid span,
  .subservice-detail-grid article.subservice-custom span {
    display: grid;
    width: 38px;
    height: 38px;
    grid-row: span 2;
    place-items: center;
    border: 1px solid rgba(200, 155, 60, 0.32);
  }

  .subservice-detail-grid h3 {
    margin-top: 0;
    line-height: 1.15;
  }

  .subservice-detail-grid p {
    margin: 2px 0 0;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .subservice-detail-grid a {
    grid-column: 1 / -1;
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    border: 1px solid rgba(200, 155, 60, 0.36);
    background: #fbfaf7;
  }

  .subservice-detail-grid article.subservice-custom a {
    justify-content: center;
  }

  .included-grid div {
    min-height: 58px;
    padding: 14px;
    align-items: flex-start;
  }

  .quick-form {
    padding: 16px;
  }

  .lead-form.compact {
    gap: 10px;
  }

  .hero-actions,
  .footer-bottom,
  .final-cta-actions {
    flex-direction: column;
  }

  .footer-simple {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-simple nav {
    gap: 8px;
    justify-content: flex-start;
  }

  .footer-cities {
    align-items: flex-start;
  }

  .footer-cities div {
    gap: 6px;
  }

  .footer-cities a {
    min-height: 30px;
    padding: 0 9px;
    font-size: 0.8rem;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .whatsapp {
    display: none;
  }

  .mobile-action {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    background: var(--navy);
  }

  .mobile-action a {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-weight: 800;
  }

  .mobile-action a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gold);
  }
}
