:root {
  --navy: #0a2037;
  --blue: #174d79;
  --cream: #f4f1e8;
  --paper: #fbfaf6;
  --brass: #c69b4b;
  --ink: #10253d;
  --border: #d8d1c1;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  min-height: 78px;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(244, 241, 232, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  font-size: 14px;
}
.mark {
  width: 32px;
  height: 32px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brass);
}
nav {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
}
.nav-link {
  font-size: 13px;
  font-weight: 700;
  color: #526172;
  padding: 29px 0 25px;
  border-bottom: 3px solid transparent;
}
.nav-link.active {
  color: var(--navy);
  border-color: var(--brass);
}
.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero-content {
  padding: clamp(72px, 10vw, 138px) clamp(28px, 7vw, 112px);
  align-self: center;
}
.eyebrow,
.section-number {
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 800;
  color: var(--brass);
}
h1,
h2,
h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}
h1 {
  margin: 0;
  font-size: clamp(50px, 6.2vw, 92px);
  line-height: 0.98;
}
h1 em {
  color: #b9d1e4;
  font-weight: 400;
}
.hero-copy {
  max-width: 670px;
  margin: 34px 0 0;
  color: #c9d5df;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}
.button {
  min-height: 48px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.03em;
  transition: transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: var(--brass);
  color: var(--navy);
}
.button.secondary {
  border-color: #496077;
  color: #fff;
}
.button.light {
  background: #fff;
  color: var(--navy);
}
.hero-art {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: radial-gradient(
    circle at 55% 52%,
    #2c688d 0,
    #123958 30%,
    #07192a 72%
  );
  display: grid;
  place-items: center;
}
.radar {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  opacity: 0.33;
  background:
    repeating-radial-gradient(circle, transparent 0 69px, #9fc4db 70px 71px),
    linear-gradient(90deg, transparent 49.8%, #9fc4db 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, #9fc4db 50%, transparent 50.2%);
}
.radar-icon {
  font-size: 54px;
  color: var(--brass);
  z-index: 2;
  text-shadow: 0 0 18px rgba(198, 155, 75, 0.7);
}
.hero-art p {
  position: absolute;
  bottom: 50px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #a8bfd0;
}
.service-visual {
  margin: 0;
  position: relative;
  background: #071726;
  overflow: hidden;
}
.service-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.service-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  max-width: calc(100% - 36px);
  padding: 7px 10px;
  background: rgba(6, 23, 38, 0.8);
  color: #d6e0e6;
  font-size: 10px;
}
.service-intro,
.history,
.calling,
.acs-history {
  padding: clamp(80px, 11vw, 150px) clamp(28px, 8vw, 128px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 9vw, 150px);
  background: var(--paper);
}
.service-intro h2,
.history h2,
.calling h2,
.acs-history h2,
.ministry h2,
.next-chapter h2,
.return-service h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1.08;
}
.service-copy,
.history-panel {
  border-left: 1px solid var(--brass);
  padding-left: clamp(28px, 4vw, 58px);
}
.service-copy p,
.history-panel p,
.body-copy {
  margin: 0 0 25px;
  font-size: 17px;
  line-height: 1.8;
  color: #415268;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--border);
  padding: 0 clamp(28px, 8vw, 128px);
}
.values div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 105px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
  border-right: 1px solid var(--border);
}
.values div:last-child {
  border: 0;
}

.cold-war {
  padding: clamp(90px, 11vw, 155px) clamp(28px, 8vw, 128px);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 10vw, 150px);
  background: #0b243a;
  color: #fff;
}
.cold-war h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1.08;
}
.cold-war-heading > p:last-child {
  max-width: 560px;
  color: #b9cad7;
  font-size: 17px;
  line-height: 1.8;
}
.cold-war-copy {
  border-left: 1px solid var(--brass);
  padding-left: clamp(28px, 4vw, 58px);
}
.cold-war-copy > p {
  margin: 0 0 25px;
  color: #d2dde5;
  font-size: 17px;
  line-height: 1.8;
}
.cold-war-copy strong {
  color: #f0ce86;
}
.cold-war-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  padding: 1px;
  background: #3b5265;
}
.cold-war-facts div {
  min-width: 0;
  padding: 24px 20px;
  background: #102d45;
}
.cold-war-facts span {
  display: block;
  margin-bottom: 12px;
  color: var(--brass);
  font: 500 clamp(21px, 2vw, 30px)/1 Georgia, serif;
}
.cold-war-facts p {
  margin: 0;
  color: #b9cad7;
  font-size: 13px;
  line-height: 1.55;
}
.values b {
  color: var(--brass);
  font-size: 20px;
}
.history-heading > p:last-child {
  color: #556375;
  line-height: 1.75;
  font-size: 17px;
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
}
.timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 26px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}
.timeline span {
  font:
    24px Georgia,
    serif;
  color: var(--blue);
}
.timeline p {
  margin: 0;
  color: #46586e;
  line-height: 1.6;
}
.next-chapter,
.return-service {
  padding: clamp(72px, 9vw, 120px) clamp(28px, 8vw, 128px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
  background: var(--blue);
  color: #fff;
}
.next-chapter h2 {
  max-width: 900px;
}
.sources {
  padding: 58px clamp(28px, 8vw, 128px);
  background: #ede9df;
  border-top: 1px solid var(--border);
}
.sources > p:nth-child(2) {
  color: #536171;
}
.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}
.source-links a {
  border-bottom: 1px solid var(--brass);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 750;
  color: var(--blue);
}
footer {
  min-height: 105px;
  padding: 35px clamp(28px, 8vw, 128px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: #071726;
  color: #91a4b7;
  font-size: 12px;
}
footer span {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.14em;
}
footer p {
  margin: 0;
}
.chaplain-hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: #e7edf0;
  overflow: hidden;
}
.chaplain-emblem-wrap {
  min-height: 610px;
  padding: clamp(50px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: radial-gradient(circle at 50% 45%, #f9fafb, #dbe2e7 72%);
}
.chaplain-emblem-wrap img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(10, 32, 55, 0.2));
}
.chaplain-emblem-wrap p {
  margin: 0;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.chaplain-title {
  padding: clamp(80px, 10vw, 145px) clamp(28px, 8vw, 120px);
  align-self: center;
}
.chaplain-title h1 {
  color: var(--navy);
}
.chaplain-title h1 em {
  color: var(--blue);
}
.chaplain-title > p:last-child {
  color: #425a69;
  font-size: 20px;
  line-height: 1.7;
  max-width: 670px;
  margin-top: 35px;
}
.calling-quote {
  border-top: 3px solid var(--brass);
  padding-top: 28px;
}
.calling-quote p {
  margin: 0;
  font:
    italic 28px/1.5 Georgia,
    serif;
  color: var(--blue);
}
.ministry {
  padding: clamp(90px, 10vw, 140px) clamp(28px, 8vw, 128px);
  background: #e5ebee;
}
.ministry > h2 {
  max-width: 760px;
}
.ministry-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #bcc8cc;
  border: 1px solid #bcc8cc;
}
.ministry-grid article {
  padding: clamp(30px, 4vw, 58px);
  background: #f1f4f4;
  min-height: 310px;
}
.ministry-grid .icon {
  color: var(--brass);
  font-size: 28px;
}
.ministry-grid h3 {
  margin: 58px 0 16px;
  font-size: 27px;
}
.ministry-grid p {
  color: #4d5f6b;
  line-height: 1.7;
  margin: 0;
}
.return-service {
  background: linear-gradient(125deg, #0c2b43, #175678);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.return-service h2 {
  max-width: 1080px;
}
.return-service .button {
  margin-top: 25px;
}
.coast-visual img {
  max-height: 720px;
  object-fit: cover;
  object-position: center bottom;
}
@media (max-width: 850px) {
  .site-header {
    height: auto;
    flex-wrap: wrap;
    gap: 4px 20px;
    padding-top: 10px;
  }
  nav {
    width: 100%;
    justify-content: center;
  }
  .nav-link {
    padding: 12px 0 14px;
  }
  .hero,
  .chaplain-hero {
    grid-template-columns: 1fr;
  }
  .hero-art {
    min-height: 420px;
  }
  .chaplain-emblem-wrap {
    min-height: 390px;
    padding: 50px;
  }
  .chaplain-emblem-wrap img {
    width: min(82vw, 420px);
  }
  .hero-content,
  .chaplain-title {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .service-intro,
  .history,
  .cold-war,
  .calling,
  .acs-history {
    grid-template-columns: 1fr;
  }
  .ministry-grid {
    grid-template-columns: 1fr;
  }
  .ministry-grid article {
    min-height: auto;
  }
  .ministry-grid h3 {
    margin-top: 34px;
  }
  .next-chapter {
    align-items: flex-start;
    flex-direction: column;
    gap: 36px;
  }
}
@media (max-width: 560px) {
  .values {
    grid-template-columns: 1fr;
  }
  .values div {
    min-height: 75px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .timeline li {
    grid-template-columns: 80px 1fr;
  }
  .hero-art {
    min-height: 330px;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .service-visual figcaption {
    position: static;
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}

.service-record {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 38px 0 0;
  padding: 1px;
  background: var(--border);
}
.service-record div {
  min-width: 0;
  padding: 16px 18px;
  background: var(--paper);
}
.service-record dt {
  margin-bottom: 6px;
  color: #687788;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.service-record dd {
  margin: 0;
  color: var(--navy);
  font: 500 17px/1.35 Georgia, serif;
}
.chaplain-record div {
  background: #f4f6f6;
}
@media (max-width: 560px) {
  .service-record {
    grid-template-columns: 1fr;
  }
  .cold-war-facts {
    grid-template-columns: 1fr;
  }
}

.sites-band {
  padding: clamp(70px, 9vw, 120px) clamp(28px, 8vw, 128px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(45px, 9vw, 130px);
  background: #e5ebee;
  border-top: 1px solid #c5d0d4;
}
.sites-band h2,
.contact-band h2 {
  margin: 0;
  font: 500 clamp(34px, 4vw, 56px) / 1.08 Georgia, serif;
  letter-spacing: -0.035em;
}
.site-links {
  border-top: 1px solid var(--navy);
}
.site-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  border-bottom: 1px solid #bdc9ce;
  color: var(--blue);
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 700;
}
.site-links a:hover {
  color: var(--navy);
}
.site-links span {
  color: var(--brass);
}
.contact-band {
  padding: clamp(55px, 7vw, 90px) clamp(28px, 8vw, 128px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.contact-band > a {
  padding-bottom: 7px;
  border-bottom: 2px solid var(--brass);
  color: var(--blue);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 750;
}
.contact-band > a span {
  margin-left: 8px;
  color: var(--brass);
}
.footer-email {
  color: #d7b66f;
  font-weight: 700;
}
@media (max-width: 850px) {
  .sites-band {
    grid-template-columns: 1fr;
  }
  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}
