/* Root colors */
:root {
  --navy: #0F2340;
  --gold: #C8A046;
  --ink: #0f172a;
  --muted: #6b7280;
  --bg: #f7f7f8;
  --white: #ffffff;
}

/* Base */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

h1, h2, h3 { margin: 0 0 .5rem; }
h2 { font-size: 1.9rem; letter-spacing: .2px; }
h3 { font-size: 1.15rem; }

/* Header */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 0;
}
.site-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
}
.top-contacts a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 600;
}
.top-contacts .sep {
  opacity: .5;
  margin: 0 .5rem;
}
@media (max-width:768px) {
  .site-logo { height: 56px; }
  .top-contacts { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 65vh;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,35,64,.55), rgba(15,35,64,.65));
}
.hero-inner {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 4rem 1rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.hero .tagline {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #f8fafc;
}
.cta-row {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  border: 2px solid var(--white);
  color: var(--white);
  text-decoration: none;
  padding: .7rem 1.1rem;
  border-radius: .6rem;
  font-weight: 700;
}
.btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #1e1e1e;
}
.btn:hover { opacity: .9; }

/* Sections */
.services, .about, .contact { padding: 3rem 0; }
.services h2, .about h2, .contact h2 { margin-bottom: 1rem; }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.card p { color: var(--muted); margin: .4rem 0 0; }

@media (max-width:960px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width:560px) { .grid { grid-template-columns: 1fr; } }

.about p {
  color: var(--muted);
  max-width: 70ch;
}

.contact .contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: .35rem;
}
.socials {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}
.socials a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.socials a:hover { border-color: var(--gold); }

/* Footer */
.site-footer {
  background: #0b1930;
  color: #dbe3f4;
  padding: 1rem 0;
  margin-top: 2rem;
  font-size: .95rem;
  text-align: center;
}
/* Force larger logo size */
.site-logo {
  height: 160px !important;  /* adjust this number up/down until it looks right */
  width: auto !important;
}
@media (max-width: 768px) {
  .site-logo {
    height: 80px !important;  /* smaller on phones */
  }
}
