/* ==========================================================================
   KingsPride Consult Limited
   Design system: deep navy, white, charcoal, maroon accent
   ========================================================================== */

:root {
  --navy-900: #0A1B33;
  --navy-800: #0F2440;
  --navy-700: #143057;
  --navy-600: #1B3F6F;
  --navy-100: #E9EEF5;
  --navy-50: #F3F6FA;

  --maroon: #8C1D3F;
  --maroon-dark: #6E1632;

  --white: #FFFFFF;
  --off-white: #F5F6F8;
  --charcoal: #262C33;
  --gray-600: #5A6470;
  --gray-400: #98A1AD;
  --border: #E2E5E9;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;

  --container: 1180px;
  --header-h: 78px;
  --radius: 2px;
  --shadow-soft: 0 14px 40px rgba(10, 27, 51, 0.08);
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--navy-900);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--navy-600);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 200;
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 16px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  line-height: 1.2;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-accent {
  background: var(--maroon);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(140, 29, 63, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy-900);
  color: var(--navy-900);
}

.btn-outline:hover {
  background: var(--navy-900);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy-900);
}

.btn-block {
  width: 100%;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy-900);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-text:hover {
  border-color: currentColor;
}

.btn-text svg {
  flex: none;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--white);
  background: transparent;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  color: var(--navy-900);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(10, 27, 51, 0.07);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-family: var(--font-serif);
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  visibility: visible;
}

.site-nav.is-open {
  visibility: visible;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list a {
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.85;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.nav-list a:hover {
  opacity: 1;
  border-color: currentColor;
}

.nav-list a.is-active {
  opacity: 1;
  border-color: currentColor;
}

.btn-nav {
  padding: 12px 24px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
}

.btn-nav:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: none;
  box-shadow: none;
}

.site-header.is-scrolled .btn-nav {
  border-color: var(--navy-900);
  color: var(--navy-900);
}

.site-header.is-scrolled .btn-nav:hover {
  background: var(--navy-900);
  color: var(--white);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  color: inherit;
  padding: 6px;
}

.nav-toggle-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.nav-toggle-bar {
  height: 2px;
  width: 100%;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(10, 27, 51, 0.72) 0%, rgba(10, 27, 51, 0.55) 50%, rgba(10, 27, 51, 0.88) 100%),
    linear-gradient(90deg, rgba(10, 27, 51, 0.55) 0%, rgba(10, 27, 51, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding-top: var(--header-h);
}

.hero-lede {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.6vw, 4.4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.hero-sub {
  margin-top: 28px;
  max-width: 700px;
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.hero-note {
  margin-top: 16px;
  max-width: 640px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
}

.hero-actions .btn-text {
  color: var(--white);
  opacity: 0.92;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.hero-scroll span {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--white);
  animation: scroll-hint 2.4s ease-in-out infinite;
}

@keyframes scroll-hint {
  0% { top: -40%; }
  60% { top: 110%; }
  100% { top: 110%; }
}

.hero-fade {
  opacity: 0;
  animation: hero-fade-up 0.9s ease forwards;
  animation-delay: var(--fade-delay, 0s);
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Credibility strip
   -------------------------------------------------------------------------- */
.credibility {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.cred-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 22px;
}

.cred-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
}

.cred-list li {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy-800);
  padding: 6px 14px;
  opacity: 0.85;
}

.cred-list li + li::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--navy-600);
  margin-right: 28px;
  vertical-align: middle;
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section {
  padding: 112px 0;
}

.section-alt {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  text-wrap: balance;
}

.section-head {
  max-width: 740px;
  margin-bottom: 56px;
}

.section-head p {
  margin-top: 20px;
  font-size: 1.12rem;
  color: var(--gray-600);
}

.section-body p {
  margin-bottom: 20px;
  color: var(--charcoal);
}

.section-link {
  margin-top: 44px;
}

/* Two-column split */
.grid-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
}

.check-list li svg {
  position: absolute;
  left: 0;
  top: 0.42em;
  color: var(--maroon);
}

/* --------------------------------------------------------------------------
   Founder
   -------------------------------------------------------------------------- */
.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 72px;
  align-items: start;
}

.founder-figure {
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.founder-figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.founder-caption {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.founder-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-900);
}

.founder-role {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 4px;
}

.founder-intro {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--navy-800);
  margin: 24px 0 34px;
}

.founder-block {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

.founder-block h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy-600);
  margin-bottom: 10px;
}

.founder-block p {
  color: var(--charcoal);
}

.founder-closing {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 2px solid var(--navy-900);
  font-size: 1.08rem;
  color: var(--navy-800);
}

.credential-list {
  margin: 34px 0 0;
  display: grid;
  gap: 12px;
}

.credential-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.98rem;
  color: var(--charcoal);
}

.credential-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--navy-900);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: var(--navy-600);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 26px;
  color: var(--navy-700);
  background: var(--navy-100);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.service-icon svg {
  display: block;
}

.service-card:hover .service-icon {
  background: var(--navy-900);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 12px;
  line-height: 1.35;
}

.service-card p {
  font-size: 0.98rem;
  color: var(--gray-600);
}

.service-card-cta {
  background: var(--navy-800);
  border-color: var(--navy-800);
  justify-content: center;
}

.service-card-cta h3 {
  color: var(--white);
}

.service-card-cta p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
}

.service-card-cta:hover {
  border-color: var(--navy-800);
  box-shadow: 0 18px 44px rgba(10, 27, 51, 0.28);
}

/* --------------------------------------------------------------------------
   Steps / How We Work
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.step {
  border-top: 3px solid var(--navy-900);
  padding-top: 26px;
}

.step-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy-600);
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
  color: var(--gray-600);
}

/* --------------------------------------------------------------------------
   Insights
   -------------------------------------------------------------------------- */
.insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.insight-grid > p {
  font-size: 1.15rem;
  color: var(--charcoal);
}

.insight-list {
  margin: 0;
}

.insight-list li {
  padding: 16px 0 16px 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.insight-closing {
  margin-top: 48px;
  max-width: 760px;
  font-size: 1.1rem;
  color: var(--navy-800);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact {
  background: var(--navy-900);
  color: var(--white);
  padding: 112px 0;
}

.contact :focus-visible {
  outline-color: rgba(255, 255, 255, 0.9);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.contact-copy .section-title {
  color: var(--white);
}

.contact-copy > p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-copy .contact-prompt {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.98rem;
}

.contact-details {
  margin-top: 40px;
  display: grid;
  gap: 16px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-details svg {
  color: rgba(255, 255, 255, 0.6);
  flex: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Form */
.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  padding: 13px 16px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  margin-top: 16px;
  font-size: 0.95rem;
  min-height: 1.5em;
}

.form-status.success {
  color: #9CE0B0;
}

.form-status.error {
  color: #FFB4B4;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #071427;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 64px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding-bottom: 56px;
}

.brand-footer {
  color: var(--white);
}

.footer-tagline {
  margin-top: 18px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 340px;
}

.footer-tagline span {
  color: rgba(255, 255, 255, 0.3);
  padding: 0 6px;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
  justify-self: end;
  text-align: right;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 28px;
}

.footer-legal p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------------------------------
   Scroll to top
   -------------------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(10, 27, 51, 0.28);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.to-top svg {
  width: 22px;
  height: 22px;
}

.to-top:hover {
  background: var(--maroon);
  border-color: var(--maroon);
}

.to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

@media (max-width: 560px) {
  .to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

/* --------------------------------------------------------------------------
   Reveal on scroll (applied only when JS is active)
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .founder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .founder-figure {
    position: static;
    max-width: 460px;
  }

  .footer-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 960px) {
  .section {
    padding: 88px 0;
  }

  .contact {
    padding: 88px 0;
  }

  .grid-split,
  .insight-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

@media (max-width: 768px) {
  :root {
    --header-h: 68px;
  }

  .hero {
    min-height: 0;
    align-items: flex-start;
    padding: calc(var(--header-h) + 44px) 0 80px;
  }

  .hero-content {
    padding-top: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    flex-direction: column;
    justify-content: center;
    gap: 44px;
    background: var(--navy-900);
    color: var(--white);
    visibility: hidden;
    transform: translateY(-100%);
    transition: transform 0.35s ease, visibility 0s linear 0.35s;
    padding: 80px 32px 40px;
  }

  .site-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    transition: transform 0.35s ease;
  }

  .nav-list {
    flex-direction: column;
    gap: 26px;
  }

  .nav-list a {
    font-size: 1.4rem;
    font-weight: 500;
    opacity: 1;
  }

  .site-nav .btn-nav {
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
  }

  .site-nav .btn-nav:hover {
    background: var(--white);
    color: var(--navy-900);
  }

  body.nav-open {
    overflow: hidden;
  }

  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 28px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 72px 0;
  }

  .contact {
    padding: 72px 0;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .cred-list li {
    font-size: 0.9rem;
  }

  .footer-legal {
    padding: 20px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
