@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Merriweather:wght@700&display=swap');

:root {
  --navy: #142536;
  --navy-dark: #0c1925;
  --blue: #246f96;
  --blue-dark: #195675;
  --gold: #d4a857;
  --cream: #f5f2eb;
  --light: #f4f7f9;
  --white: #ffffff;
  --text: #26323c;
  --muted: #63717d;
  --border: #dce3e8;
  --container: 1160px;
  --radius: 10px;
  --shadow: 0 18px 45px rgba(20, 37, 54, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 25, 37, 0.97);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.06em;
}

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

.brand-text strong {
  font-family: "Merriweather", Georgia, serif;
  font-size: 17px;
}

.brand-text small {
  margin-top: 4px;
  color: rgba(255,255,255,0.64);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: rgba(255,255,255,0.84);
  font-size: 13px;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav .nav-cta {
  padding: 10px 16px;
  border-radius: 5px;
  background: var(--gold);
  color: var(--navy-dark);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12,25,37,0.92) 0%, rgba(12,25,37,0.79) 48%, rgba(12,25,37,0.34) 100%),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1900&q=88")
    center / cover no-repeat;
}

.hero-content {
  max-width: 760px;
  padding-block: 95px;
}

.eyebrow,
.section-label {
  margin: 0 0 11px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.hero h1,
.section-heading h2,
.process-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.22;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(39px, 6vw, 66px);
}

.hero-content > p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}

.primary-button,
.secondary-button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
}

.primary-button {
  background: var(--gold);
  color: var(--navy-dark);
}

.secondary-button {
  border: 1px solid rgba(255,255,255,0.42);
  color: var(--white);
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-grid > div {
  padding: 25px 28px;
}

.trust-grid > div + div {
  border-left: 1px solid var(--border);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--navy);
  font-size: 15px;
}

.trust-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.services-section,
.issues-section {
  padding-block: 92px;
  background: var(--light);
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.process-copy h2,
.about-copy h2,
.contact-copy h2 {
  color: var(--navy);
  font-size: clamp(30px, 4.5vw, 44px);
}

.section-heading > p:last-child {
  margin: 15px auto 0;
  color: var(--muted);
}

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

.service-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.23s ease, box-shadow 0.23s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-number {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.service-card h3 {
  margin: 12px 0 11px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process-section {
  padding-block: 92px;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 75px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 120px;
}

.process-copy > p:last-child {
  margin-top: 18px;
  color: var(--muted);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 0 0 28px;
}

.process-list li + li {
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.process-list li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.process-list h3 {
  margin: 2px 0 5px;
  color: var(--navy);
  font-size: 20px;
}

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

.about-section {
  padding-block: 92px;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  min-height: 480px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.about-copy p {
  color: var(--muted);
}

.about-copy ul {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.about-copy li {
  position: relative;
  margin-top: 12px;
  padding-left: 28px;
  color: var(--navy);
  font-weight: 700;
}

.about-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
}

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

.issues-grid span {
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.contact-section {
  padding-block: 92px;
  color: var(--white);
  background: var(--navy);
}

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

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

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

.contact-copy > p:not(.section-label) {
  color: rgba(255,255,255,0.72);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 28px;
  color: var(--gold);
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  padding: 29px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 12px 13px;
  color: var(--text);
  background: #fbfcfd;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36,111,150,0.12);
}

.contact-form button {
  padding: 13px 20px;
  border: 0;
  border-radius: 5px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 800;
  cursor: pointer;
}

.form-note {
  margin: -3px 0 0;
  color: #7a8791;
  font-size: 11px;
}

.site-footer {
  padding-block: 48px 24px;
  color: rgba(255,255,255,0.68);
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1.3fr;
  gap: 40px;
  align-items: start;
}

.footer-grid strong {
  color: var(--white);
  font-family: "Merriweather", Georgia, serif;
}

.footer-grid p {
  margin: 8px 0 0;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--white);
  font-size: 13px;
}

.disclaimer {
  margin: 0 !important;
}

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.09);
  font-size: 12px;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .main-nav .nav-cta {
    margin-top: 10px;
    padding-inline: 15px;
    text-align: center;
  }

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

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

  .process-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .process-copy {
    position: static;
  }

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

  .disclaimer {
    grid-column: 1 / -1;
  }
}

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

  .brand-text strong {
    font-size: 14px;
  }

  .brand-mark {
    width: 41px;
    height: 41px;
    font-size: 13px;
  }

  .hero {
    min-height: 600px;
    background-position: 62% center;
  }

  .hero h1 {
    font-size: 41px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-button,
  .secondary-button {
    text-align: center;
  }

  .trust-strip {
    margin-top: 0;
    background: var(--white);
  }

  .trust-grid {
    grid-template-columns: 1fr;
    border-radius: 0;
    box-shadow: none;
  }

  .trust-grid > div + div {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .services-section,
  .process-section,
  .about-section,
  .issues-section,
  .contact-section {
    padding-block: 65px;
  }

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

  .about-image,
  .about-image img {
    min-height: 350px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .contact-form label {
    grid-column: 1 / -1;
  }

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