/* Variant B - Standing with the brand (navy immersive) */
:root {
  --navy: #051e40;
  --navy-deep: #020c1a;
  --red: #c8102e;
  --ivory: #f2f0e9;
  --ivory-dim: rgba(242, 240, 233, 0.66);
  --rule: rgba(242, 240, 233, 0.22);
}

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

html { font-size: 106.25%; }

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  background: var(--navy);
  color: var(--ivory);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.mast {
  padding: 3rem 1.25rem 0;
  max-width: 38rem;
  margin: 0 auto;
}

.mast h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(2.3rem, 10vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0.015em;
  max-width: 12ch;
}

/* Signature: single red bar under the masthead */
.mast::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 5px;
  background: var(--red);
  margin-top: 1.1rem;
}

main {
  max-width: 38rem;
  margin: 0 auto;
  padding: 1.8rem 1.25rem 3rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--ivory);
  max-width: 34rem;
}

.notice {
  margin: 2.2rem 0 2.6rem;
  border-top: 1px solid var(--rule);
}

.notice-inner { padding-top: 0.4rem; }

.notice-row { padding: 0.8rem 0; }
.notice-row + .notice-row { border-top: 1px solid var(--rule); }

.notice-row dt {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--ivory-dim);
  margin-bottom: 0.1rem;
}

.notice-row dd { font-size: 1.08rem; }

#contact { scroll-margin-top: 1rem; }

#contact h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.connect { list-style: none; display: grid; gap: 0.65rem; }

.connect-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 3.4rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ivory);
}

a.connect-row:hover { background: rgba(242, 240, 233, 0.07); }

.ico {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: var(--ivory);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.connect-row .label { font-weight: 600; flex: none; }

.connect-row .val {
  margin-left: auto;
  color: var(--ivory-dim);
  font-size: 0.9rem;
  text-align: right;
  overflow-wrap: anywhere;
}

a.connect-row:focus-visible,
.foot a:focus-visible {
  outline: 2px solid var(--ivory);
  outline-offset: 2px;
}

.foot {
  background: var(--navy-deep);
  padding: 1.6rem 1.25rem 2.6rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ivory-dim);
}

.foot a { color: var(--ivory-dim); }

@media (max-width: 26rem) {
  .connect-row { flex-wrap: wrap; }
  .connect-row .val { margin-left: calc(22px + 0.9rem); width: 100%; text-align: left; margin-top: -0.35rem; }
}
