:root {
  --navy: #1a365d;
  --navy-dark: #122548;
  --gold: #b08d57;
  --gold-soft: #c9a55a;
  --cream: #faf6ed;
  --grey-1: #e8e6df;
  --grey-2: #4a5568;
  --grey-3: #2d3748;
  --serif: Georgia, "Cormorant Garamond", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-3);
  background: white;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--navy); }
a:hover { color: var(--gold); }

/* Header */
header {
  background: var(--navy);
  color: white;
  border-bottom: 3px solid var(--gold);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}

.logo {
  text-decoration: none;
  color: white;
}

.logo h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo h1 span {
  color: var(--gold-soft);
  font-weight: 400;
}

.logo .tagline {
  margin: 4px 0 0;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--grey-1);
  font-weight: 400;
}

header nav {
  display: flex;
  gap: 32px;
}

header nav a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
  transition: color 0.15s;
}

header nav a:hover {
  color: var(--gold-soft);
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, white 100%);
  padding: 96px 0 80px;
  text-align: center;
}

.hero h2 {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 18px;
  color: var(--grey-2);
  margin: 0;
  font-style: italic;
}

/* Sections */
section { padding: 72px 0; }
section:nth-of-type(even) { background: var(--cream); }

section h3 {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--navy);
  margin: 0 0 32px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
}

/* About */
.about p {
  max-width: 820px;
  font-size: 17px;
  margin: 0 0 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding: 36px 0;
  border-top: 1px solid var(--grey-1);
  border-bottom: 1px solid var(--grey-1);
}

.stats > div {
  text-align: center;
}

.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 500;
}

.stats span {
  font-size: 11px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Grids (services, team, contact) */
.services .grid,
.team .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (min-width: 900px) {
  .services .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services .grid > div,
.team .grid > div {
  background: white;
  padding: 28px 28px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.services:nth-of-type(even) .grid > div,
.team:nth-of-type(even) .grid > div {
  background: var(--cream);
}

.services h4,
.team h4 {
  font-family: var(--serif);
  font-size: 19px;
  margin: 0 0 10px;
  color: var(--navy);
  font-weight: 600;
}

.services p,
.team p {
  margin: 0;
  font-size: 15px;
  color: var(--grey-2);
}

.team .role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 600;
}

/* Industries */
.industries ul {
  columns: 2;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 17px;
}

.industries li {
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-1);
  break-inside: avoid;
}

.industries li::before {
  content: "▸";
  color: var(--gold);
  margin-right: 12px;
  font-size: 12px;
}

/* Contact */
.contact .grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}

.contact h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 19px;
  margin: 0 0 14px;
  font-weight: 600;
}

.contact address {
  font-style: normal;
  margin: 0 0 16px;
  font-size: 16px;
}

.contact .hours {
  font-size: 14px;
  color: var(--grey-2);
  margin: 16px 0 0;
}

.contact form label {
  display: block;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.contact form input,
.contact form textarea {
  display: block;
  width: 100%;
  padding: 11px 13px;
  margin-top: 6px;
  border: 1px solid var(--grey-1);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--grey-3);
  background: white;
  text-transform: none;
  letter-spacing: normal;
  font-weight: normal;
}

.contact form input:focus,
.contact form textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.contact form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact form button {
  background: var(--navy);
  color: white;
  border: none;
  padding: 13px 32px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  transition: background 0.15s;
}

.contact form button:hover {
  background: var(--navy-dark);
}

.contact .form-note {
  font-size: 12px;
  color: var(--grey-2);
  margin: 14px 0 0;
  line-height: 1.5;
}

/* Footer */
footer {
  background: var(--grey-3);
  color: var(--grey-1);
  padding: 36px 0;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

footer p { margin: 0 0 6px; }
footer .tiny { font-size: 12px; color: #999; }

footer nav {
  display: flex;
  gap: 24px;
}

footer nav a {
  color: var(--grey-1);
  text-decoration: none;
  font-size: 14px;
}

footer nav a:hover { color: var(--gold-soft); }

/* Inner pages (privacy, terms, thank-you, 404) */
.page-content {
  padding: 64px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--navy);
  margin: 0 0 24px;
  font-weight: 500;
}

.page-content h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  margin: 36px 0 14px;
  font-weight: 600;
}

.page-content h3::after { display: none; }

.page-content p, .page-content li {
  font-size: 16px;
  line-height: 1.7;
}

.page-content ul { padding-left: 22px; }
.page-content .meta {
  font-size: 13px;
  color: var(--grey-2);
  font-style: italic;
}

/* Responsive */
@media (max-width: 760px) {
  .header-inner { flex-direction: column; gap: 16px; }
  header nav { flex-wrap: wrap; gap: 18px; justify-content: center; }
  .hero { padding: 64px 0 56px; }
  .hero h2 { font-size: 32px; }
  section { padding: 56px 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .services .grid, .team .grid { grid-template-columns: 1fr; }
  .industries ul { columns: 1; }
  .contact .grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { flex-direction: column; gap: 16px; }
}
