:root {
  --navy: #343747;
  --navy-dark: #2b2e3c;
  --wine: #ca1433;
  --orange: #fe7c54;
  --gray-bg: #f1f0ef;
  --gray-line: #d9dadd;
  --text: #3a3b42;
  --text-soft: #5a5b66;
}

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

body {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

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

img { max-width: 100%; height: auto; }

.wrap { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  background: var(--navy);
  padding: 18px 0;
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
header .logo img { height: 34px; display: block; }
header .logo img, .splash-top .logo img { filter: brightness(0) invert(1); }
nav { display: flex; gap: 24px; flex-wrap: wrap; }
nav a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
nav a:hover, nav a.active { color: var(--orange); text-decoration: none; }

/* Hero */
.hero {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 72px 24px 88px;
}
.hero h1 {
  font-size: 2.4em;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.15em;
  color: var(--gray-line);
  max-width: 560px;
  margin: 0 auto;
}

/* Page title (inner pages) */
.page-title {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 48px 24px;
}
.page-title h1 { font-size: 2em; font-weight: 600; }

/* Sections */
section.feature { padding: 64px 0; }
section.feature:nth-of-type(even) { background: var(--gray-bg); }
.feature .wrap {
  display: flex;
  align-items: center;
  gap: 48px;
}
.feature .wrap.reverse { flex-direction: row-reverse; }
.feature .text, .feature .media { flex: 1; }
.feature h2 { font-size: 1.6em; font-weight: 600; margin-bottom: 12px; color: var(--navy); }
.feature p { color: var(--text-soft); }

/* Generic content pages (press, contact, legal) */
main.content { padding: 56px 0 72px; }
main.content h1 { color: var(--navy); font-size: 1.9em; margin-bottom: 24px; }
main.content h2 { color: var(--navy); font-size: 1.3em; margin: 32px 0 10px; }
main.content h3 { color: var(--navy); font-size: 1.1em; margin: 24px 0 8px; }
main.content p, main.content li { color: var(--text-soft); margin-bottom: 12px; }
main.content ul, main.content ol { padding-left: 24px; margin-bottom: 16px; }

/* Footer */
footer {
  background: var(--navy-dark);
  color: var(--gray-line);
  padding: 40px 0;
  font-size: 13px;
}
footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
footer .links { display: flex; gap: 18px; flex-wrap: wrap; }
footer a { color: var(--gray-line); }
footer a:hover { color: #fff; }
footer .social { display: flex; gap: 14px; align-items: center; }
footer .social img { height: 20px; width: 20px; }

@media (max-width: 720px) {
  .feature .wrap, .feature .wrap.reverse { flex-direction: column; }
  .hero h1 { font-size: 1.8em; }
  footer .wrap { flex-direction: column; text-align: center; }
}
