@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
  --navy: #1C3552;
  --navy-dark: #14263D;
  --steel: #5B6670;
  --orange: #D9772E;
  --bg: #F6F4EF;
  --card: #FFFFFF;
  --text: #262A2D;
  --border: #DBD6CC;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Source Sans 3', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

h1, h2, h3, .brand {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

/* Header */
header {
  background: var(--navy);
  border-bottom: 4px solid var(--orange);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  max-width: 1080px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo-mark {
  width: 66px;
  height: 66px;
  flex-shrink: 0;
}
.brand {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}
.brand span {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  text-transform: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--orange);
  font-weight: 600;
  margin-top: 2px;
}
nav { display: flex; gap: 22px; flex-wrap: wrap; }
nav a {
  color: #EDEDED;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
nav a:hover { color: var(--orange); text-decoration: none; }
nav a.active { color: var(--orange); border-bottom: 2px solid var(--orange); padding-bottom: 4px; }

/* Slogan bar */
.slogan-bar {
  background: var(--navy-dark);
  border-bottom: 1px solid #2A3F58;
  text-align: center;
  padding: 8px 16px;
}
.slogan-bar span {
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%);
  color: #fff;
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 26px);
  pointer-events: none;
}
.hero-inner { max-width: 1080px; margin: 0 auto; position: relative; }
.hero h1 {
  font-size: 34px;
  max-width: 620px;
  line-height: 1.25;
  margin-bottom: 14px;
}
.hero p { max-width: 520px; color: #D9DEE4; font-size: 16px; margin-bottom: 22px; }
.hero .tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 16px;
}
.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
}
.btn:hover { background: #c26620; text-decoration: none; }
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Sections */
section { padding: 48px 24px; }
.section-alt { background: #EFEAE0; }
h2.section-title {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 6px;
}
.section-sub {
  color: var(--steel);
  font-size: 14px;
  margin-bottom: 28px;
}
.rule {
  width: 46px;
  height: 4px;
  background: var(--orange);
  margin-bottom: 18px;
}

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 760px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 22px;
}
.card h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 10px;
}
.card p { font-size: 14px; color: var(--steel); }

/* Real photo containers */
.photo {
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 160px;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.hero-inner { z-index: 1; }

/* Placeholder image blocks (no real photos used) */
.placeholder-img {
  background: repeating-linear-gradient(135deg, #C9CDD1 0 12px, #B9BFC4 12px 24px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7076;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-height: 160px;
}

/* Stats bar */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.stats div {
  text-align: center;
  padding: 26px 10px;
  border-right: 1px solid var(--border);
}
.stats div:last-child { border-right: none; }
.stats .num {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: var(--navy);
  font-weight: 700;
}
.stats .lbl {
  font-size: 12px;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats div:nth-child(2) { border-right: none; }
}

/* Footer */
footer {
  background: var(--navy-dark);
  color: #C9CFD5;
  padding: 36px 24px 24px;
  font-size: 13px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
footer h4 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
footer a { color: #C9CFD5; }
.footer-bottom {
  text-align: center;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid #2A3F58;
  color: #8B95A0;
  font-size: 12px;
}

/* Page header (non-home pages) */
.page-header {
  background: var(--navy);
  color: #fff;
  padding: 38px 24px;
}
.page-header h1 { font-size: 26px; }
.breadcrumb { font-size: 12px; color: #AEB9C4; margin-top: 6px; }

/* Contact form */
.form-row { margin-bottom: 16px; }
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
