:root {
  --navy: #0b1726;
  --navy-light: #101b2b;
  --gold: #f1d27a;
  --gold-dark: #d9b85f;
  --text-light: #ffffff;
  --text-muted: #c7d0e0;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--navy);
  color: var(--text-light);
}

body {
  min-height: 100vh;
}

/* Top navigation */
header.site-header {
  background-color: var(--navy);
  border-bottom: 1px solid rgba(241,210,122,0.25);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

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

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.25rem;
}

nav a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a:focus,
nav a.active {
  border-color: var(--gold);
  color: var(--gold);
}

main {
  padding: 2.5rem 1.5rem 2rem 1.5rem;
}

.page-wrapper {
  max-width: 1120px;
  margin: 0 auto;
}

.page-header {
  margin-bottom: 1.75rem;
}

.page-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

h1 {
  font-size: 2.1rem;
  margin: 0 0 0.75rem 0;
}

h2 {
  font-size: 1.4rem;
  margin: 1.5rem 0 0.5rem 0;
}

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

strong {
  color: var(--gold);
  font-weight: 600;
}

/* Hero layout */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  gap: 2.5rem;
  align-items: center;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
}

.hero-logo-wrap img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--gold);
  color: #1b2130;
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
}

.btn-outline:hover {
  background-color: rgba(241,210,122,0.08);
}

/* Grids for lists */
.grid-2,
.grid-3 {
  display: grid;
  grid-gap: 1.4rem 2.2rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card h3 {
  margin: 0 0 0.4rem 0;
  font-size: 1.05rem;
  color: var(--text-light);
}

.card p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Contact items */
.contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 1.4rem 2.2rem;
}

.contact-item h3 {
  margin: 0 0 0.4rem 0;
  font-size: 1rem;
  color: var(--text-light);
}

.contact-item a {
  color: var(--gold);
  text-decoration: none;
}

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

/* Section background variants */
body.home {
  background-color: var(--navy-light);
}

body.services {
  background-color: #050a12;
}

body.fraud {
  background-color: var(--navy-light);
}

body.about {
  background-color: #050a12;
}

body.contact {
  background-color: var(--navy-light);
}

footer {
  text-align: center;
  padding: 1.5rem 1rem 2rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background-color: var(--navy);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .grid-2,
  .grid-3,
  .contact-list {
    grid-template-columns: 1fr;
  }

  main {
    padding: 2rem 1.1rem 1.8rem 1.1rem;
  }

  h1 {
    font-size: 1.75rem;
  }
}

/* Photo blocks for each page */
.page-photo {
  margin: 2rem 0 0 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.page-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Two-column split layout option */
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  gap: 2rem;
  align-items: center;
}

@media (max-width: 900px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
}

/* Stacked list style for extra info */
.point-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.9rem;
  margin-top: 0.75rem;
}

.point-item {
  padding-left: 1.1rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.point-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.1rem;
  color: var(--gold);
  font-size: 1.1rem;
}
