:root {
  --navy: #07172a;
  --navy-2: #0e253f;
  --gold: #b98521;
  --gold-light: #d7aa4c;
  --off-white: #f7f6f2;
  --white: #ffffff;
  --ink: #111827;
  --muted: #5c6675;
  --line: rgba(7, 23, 42, 0.12);
  --shadow: 0 24px 70px rgba(7, 23, 42, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 100;
  transition: top 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 246, 242, 0.88);
  border-bottom: 1px solid rgba(7, 23, 42, 0.08);
}

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

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

.brand img {
  width: 184px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--navy);
  font-weight: 650;
  letter-spacing: 0.02em;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

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

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 74px;
  background:
    radial-gradient(circle at 76% 22%, rgba(185, 133, 33, 0.18), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7f6f2 48%, #ece8dd 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

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

.eyebrow.gold {
  color: var(--gold-light);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--navy);
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.22;
  margin-bottom: 12px;
}

.lead {
  max-width: 650px;
  color: #354254;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  margin-bottom: 34px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 18px 36px rgba(185, 133, 33, 0.22);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(7, 23, 42, 0.1);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  display: inline-flex;
  border: 1px solid rgba(7, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.68);
  color: var(--navy);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  padding: 44px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: -1;
}

.hero-card::before {
  width: 220px;
  height: 220px;
  top: -64px;
  right: -54px;
  background: rgba(185, 133, 33, 0.2);
}

.hero-card::after {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: -48px;
  background: rgba(7, 23, 42, 0.08);
}

.hero-card img {
  width: 100%;
  filter: drop-shadow(0 18px 24px rgba(7, 23, 42, 0.08));
}

.section {
  padding: 90px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.intro-grid p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading.narrow {
  max-width: 680px;
}

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

.service-card {
  min-height: 260px;
  background: var(--white);
  border: 1px solid rgba(7, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 34px rgba(7, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 133, 33, 0.35);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: rgba(185, 133, 33, 0.13);
  color: var(--gold);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.dark-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(185, 133, 33, 0.17), transparent 30%),
    linear-gradient(135deg, var(--navy), #020a14);
  color: rgba(255, 255, 255, 0.78);
}

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

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.feature p {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: steps;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(7, 23, 42, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -58px;
  top: -58px;
  background: rgba(185, 133, 33, 0.1);
  border-radius: 50%;
}

.step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
}

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

.cta-band {
  padding: 58px 0;
  background: linear-gradient(135deg, #ffffff, #efe6d1);
  border-top: 1px solid rgba(7, 23, 42, 0.08);
  border-bottom: 1px solid rgba(7, 23, 42, 0.08);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.cta-grid h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-details {
  margin-top: 28px;
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(7, 23, 42, 0.08);
}

.contact-details p {
  margin: 0 0 10px;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-details a {
  color: var(--navy);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 23, 42, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 23, 42, 0.14);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: #fbfbf9;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(185, 133, 33, 0.7);
  box-shadow: 0 0 0 4px rgba(185, 133, 33, 0.12);
}

textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.site-footer {
  padding: 42px 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
}

.site-footer img {
  width: 170px;
  background: var(--white);
  border-radius: 16px;
  padding: 8px;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-weight: 750;
}

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

.copyright {
  text-align: right;
}

@media (max-width: 930px) {
  .hero-grid,
  .intro-grid,
  .split,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

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

  .cta-grid .btn {
    justify-self: start;
  }

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

  .copyright {
    text-align: left;
  }
}

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

  .nav {
    min-height: 76px;
  }

  .brand img {
    width: 148px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid rgba(7, 23, 42, 0.1);
    border-radius: 20px;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
    border-radius: 14px;
  }

  .nav-links a:hover {
    background: var(--off-white);
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    padding: 58px 0 52px;
  }

  .section {
    padding: 66px 0;
  }

  h1 {
    letter-spacing: -0.055em;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .cards,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step,
  .contact-form {
    padding: 22px;
  }

  .hero-card {
    padding: 24px;
    border-radius: 26px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

/* Updated content sections */
.service-grid .featured-card {
  grid-column: span 3;
  min-height: 210px;
  background:
    radial-gradient(circle at 92% 8%, rgba(185, 133, 33, 0.18), transparent 28%),
    var(--white);
}

.client-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(239, 230, 209, 0.72));
  border-top: 1px solid rgba(7, 23, 42, 0.08);
  border-bottom: 1px solid rgba(7, 23, 42, 0.08);
}

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

.client-grid span {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(7, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(7, 23, 42, 0.045);
}

.feature-intro {
  background: rgba(185, 133, 33, 0.13);
  border-color: rgba(215, 170, 76, 0.32);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 44px;
  border-radius: 34px;
  border: 1px solid rgba(7, 23, 42, 0.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(185, 133, 33, 0.16), transparent 30%),
    var(--white);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin-bottom: 16px;
}

.contact-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-details.large {
  margin-top: 0;
  background: rgba(247, 246, 242, 0.84);
}

.contact-details.large p {
  font-size: 1rem;
}

.contact-details.large a {
  color: var(--gold);
}

@media (max-width: 930px) {
  .service-grid .featured-card,
  .contact-panel {
    grid-column: auto;
  }

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

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

@media (max-width: 720px) {
  .client-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 24px;
    border-radius: 26px;
  }
}
