.site-header {
  background: linear-gradient(180deg, rgba(15, 39, 69, 0.97), rgba(18, 47, 84, 0.96));
  color: #f6edd9;
  border-bottom: 1px solid rgba(215, 179, 95, 0.32);
  box-shadow: 0 10px 18px rgba(5, 15, 30, 0.12);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  min-height: 5.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.55rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.92;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: #fff8e9;
}

/* Revised hero */
.hero-stage {
  position: relative;
  background:
    radial-gradient(circle at 50% 12%, rgba(255,255,255,0.08), transparent 22%),
    linear-gradient(180deg, rgba(10,26,58,0.95), rgba(16,45,92,0.97)),
    url("../img/navy-paper-texture.png");
  background-size: cover;
  background-position: center;
  padding: 2.2rem 0 1.25rem;
  border-bottom: 6px solid #c9a24a;
  overflow: hidden;
}

.hero-top-lines {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  pointer-events: none;
}

.hero-top-lines span {
  display: block;
  height: 6px;
  background: linear-gradient(90deg, #c9a24a, #e3c46f, #c9a24a);
  width: calc(50% - 180px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18);
}

.hero-crest-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  z-index: 2;
}

.hero-crest {
  width: 210px;
  max-width: 42vw;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(380px, 500px) 1fr;
  align-items: center;
  gap: 2.8rem;
  padding-bottom: 0.7rem;
}

.hero-portrait-panel {
  border: 5px solid #d8bf80;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.22),
    0 14px 34px rgba(0,0,0,0.35);
  background: #102b56;
  overflow: hidden;
  max-width: 29rem;
  margin: 0 auto;
}

.hero-portrait {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy-panel {
  color: #f2ead8;
  text-align: left;
  padding-top: 0.7rem;
}

.hero-kicker {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.92rem;
  color: #d7b463;
}

.hero-title {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(3.6rem, 6.8vw, 5.7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: #f4ead7;
  text-shadow: 0 2px 10px rgba(0,0,0,0.28);
}

.hero-office {
  margin: 0.8rem 0 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.28rem, 2.6vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #d9b25a;
}

.hero-slogan {
  margin: 1rem 0 1.5rem;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-style: italic;
  color: #f3e6cf;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button-large {
  padding: 1rem 1.6rem;
  font-size: 1.08rem;
  min-width: 220px;
  text-align: center;
}

.proclamation {
  background: var(--color-paper);
  border-top: 2px solid rgba(161, 122, 47, 0.62);
  border-bottom: 1px solid rgba(161, 122, 47, 0.34);
  padding: 1.2rem 0 1rem;
}

.proclamation-line {
  margin: 0;
  text-align: center;
  font-size: clamp(1.22rem, 2vw, 1.9rem);
  line-height: 1.5;
  color: #354965;
}

.intro-panel {
  padding: 2.6rem 0 3.1rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.platform-card {
  min-height: 12.4rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(0,0,0,0.12)),
    linear-gradient(180deg, #1a4271 0%, #102947 100%);
  color: #fff5dd;
  padding: 1.35rem 1.05rem 1.2rem;
  text-align: center;
  border: 2px solid #b58a34;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14), 0 12px 24px rgba(12, 31, 54, 0.12);
}

.platform-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.28;
}

.platform-card p {
  margin: 0;
  color: #f8eed6;
  font-size: 1.02rem;
  line-height: 1.5;
}

.ornament {
  display: flex;
  justify-content: center;
  margin: 1.9rem 0 1.35rem;
}

.why-clifton {
  text-align: center;
}

.why-lead {
  margin: 0;
  font-size: 1.55rem;
  font-style: italic;
  color: #30435b;
}

.why-body {
  max-width: 43rem;
  margin: 1rem auto 0;
  text-align: center;
  font-size: 1.14rem;
  line-height: 1.65;
  color: #2f4158;
}

.endorsements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.35rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(161, 122, 47, 0.5);
}

.endorsement-card {
  margin: 0;
  padding: 0.8rem 0.9rem 0.2rem;
  text-align: center;
  font-style: italic;
  color: #34475f;
}

.endorsement-card cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  color: #45576f;
}

.cta-band {
  padding: 2.3rem 0 3.2rem;
  color: #f9f0dd;
  background:
    radial-gradient(circle at top center, rgba(255,255,255,0.09), transparent 18%),
    linear-gradient(180deg, #1b3f70 0%, #102746 100%);
  border-top: 2px solid rgba(217, 179, 95, 0.54);
  border-bottom: 2px solid rgba(217, 179, 95, 0.54);
}

.cta-shell {
  text-align: center;
}

.stars {
  display: flex;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.stars img,
.stars svg {
  max-width: 220px;
  height: auto;
}

.cta-copy {
  max-width: 43rem;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.contact-frame {
  max-width: 48rem;
  margin: 1.8rem auto 0;
  padding: 0.9rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(0,0,0,0.08));
  border: 1px solid rgba(216, 182, 104, 0.44);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  position: relative;
  padding: 2rem 2rem 1.7rem;
  background: linear-gradient(180deg, rgba(247, 237, 217, 0.99), rgba(236, 221, 188, 0.98));
  border: 2px solid rgba(207, 172, 94, 0.72);
}

.form-row {
  display: grid;
  grid-template-columns: 7.25rem 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.form-row label {
  padding-top: 0.75rem;
  color: #20324a;
  font-weight: 700;
  text-align: right;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(135, 107, 51, 0.5);
  background: #faf5ea;
  min-height: 3.2rem;
  padding: 0.8rem 0.9rem;
  font: inherit;
  font-size: 1rem;
  color: #1f2a37;
}

.form-row textarea {
  min-height: 11rem;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(161, 122, 47, 0.28);
  border-color: rgba(161, 122, 47, 0.76);
}

.form-actions {
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}

.site-footer {
  background: linear-gradient(180deg, #102744 0%, #0a1b30 100%);
  color: #f6edd9;
  padding: 1.6rem 0 2.25rem;
}

.footer-inner {
  text-align: center;
}

.footer-motto {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-note {
  margin: 0.75rem 0 0;
  color: rgba(246, 237, 217, 0.72);
  font-size: 0.95rem;
}

.manifesto-page,
.thankyou-page {
  background: linear-gradient(180deg, #15345e 0%, #0f2745 12rem, var(--color-paper) 12rem, var(--color-paper) 100%);
}

.manifesto-paper,
.thankyou-shell {
  min-height: calc(100vh - 5rem);
}

.manifesto-layout,
.thankyou-card {
  padding: 3rem 0 4rem;
}

.manifesto-topper,
.thankyou-card {
  text-align: center;
}

.manifesto-title {
  margin: 0.45rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.06;
  text-align: center;
  text-transform: uppercase;
  color: #173660;
}

.manifesto-subtitle {
  margin: 0 0 2rem;
  text-align: center;
  font-style: italic;
  font-size: 1.15rem;
}

.manifesto-section {
  margin-bottom: 1.9rem;
}

.manifesto-section h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.42rem;
  text-transform: uppercase;
  color: #173660;
}

.manifesto-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.thankyou-card h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #173660;
  text-transform: uppercase;
  margin: 1rem 0 0.6rem;
}

@media (max-width: 920px) {
  .hero-grid,
  .platform-grid,
  .endorsements {
    grid-template-columns: 1fr;
  }

  .hero-copy-panel {
    text-align: center;
    padding-top: 0;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-crest {
    width: 170px;
  }

  .hero-top-lines span {
    width: calc(50% - 110px);
  }
}

@media (max-width: 680px) {
  .header-inner {
    padding: 0.9rem 0;
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    gap: 0.8rem;
    font-size: 0.92rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .form-row label {
    padding-top: 0;
    text-align: left;
  }

  .proclamation-line {
    font-size: 1.08rem;
  }

  .contact-form,
  .contact-frame {
    padding-inline: 0.9rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-portrait-panel {
    max-width: 23rem;
  }

  .hero-title {
    font-size: clamp(2.7rem, 10vw, 4rem);
  }

  .hero-office {
    font-size: 1.2rem;
  }

  .button-large {
    min-width: 0;
    width: 100%;
  }
}
/* Manifesto page refinement */
.manifesto-paper {
  padding-top: 2.25rem;
}

.manifesto-layout.narrow {
  max-width: 58rem;
  margin-inline: auto;
  padding-top: 2.5rem;
  padding-bottom: 4.5rem;
}

.manifesto-topper {
  margin-bottom: 0.8rem;
}

.manifesto-topper img {
  display: block;
  margin: 0 auto 0.8rem;
  width: 84px;
  height: auto;
}

.manifesto-topper .kicker {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: #7f6a3b;
}

.manifesto-title {
  max-width: 12ch;
  margin: 0.35rem auto 0.45rem;
  font-size: clamp(2.2rem, 4.8vw, 3.35rem);
  line-height: 1.02;
  text-wrap: balance;
}

.manifesto-subtitle {
  max-width: 38rem;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.18rem;
  line-height: 1.55;
  color: #4a5a70;
  position: relative;
  padding-bottom: 1rem;
}

.manifesto-subtitle::after {
  content: "";
  display: block;
  width: 220px;
  max-width: 60%;
  height: 2px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(185, 145, 62, 0.95), transparent);
}

.manifesto-section {
  max-width: 52rem;
  margin: 0 auto 2.2rem;
}

.manifesto-section h2 {
  margin-bottom: 0.75rem;
  font-size: 1.58rem;
  letter-spacing: 0.01em;
}

.manifesto-section p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.78;
  color: #23354a;
}

.manifesto-actions {
  margin-top: 2.4rem;
  gap: 1.15rem;
}

@media (max-width: 680px) {
  .manifesto-layout.narrow {
    padding-top: 1.8rem;
    padding-bottom: 3.2rem;
  }

  .manifesto-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .manifesto-subtitle {
    font-size: 1.04rem;
  }

  .manifesto-section h2 {
    font-size: 1.28rem;
  }

  .manifesto-section p {
    font-size: 1rem;
    line-height: 1.68;
  }
}
/* Thank-you page refinement */
.thankyou-page {
  background: linear-gradient(180deg, #15345e 0%, #0f2745 12rem, var(--color-paper) 12rem, var(--color-paper) 100%);
}

.thankyou-shell {
  min-height: calc(100vh - 5rem);
  padding-top: 2.25rem;
}

.thankyou-card {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
  padding: 3rem 0 4.5rem;
}

.thankyou-topper {
  margin-bottom: 0.8rem;
}

.thankyou-topper img {
  display: block;
  margin: 0 auto 0.8rem;
  width: 96px;
  height: auto;
}

.thankyou-card h1 {
  margin: 0.35rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: #173660;
}

.thankyou-lead {
  max-width: 44rem;
  margin: 0 auto 1rem;
  font-size: 1.22rem;
  line-height: 1.65;
  color: #334861;
}

.thankyou-copy {
  max-width: 42rem;
  margin: 0 auto 1.8rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #334861;
}

.thankyou-card .ornament img {
  max-width: 260px;
  height: auto;
}

@media (max-width: 680px) {
  .thankyou-card {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .thankyou-card h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .thankyou-lead,
  .thankyou-copy {
    font-size: 1rem;
  }
}

/* ====================================================
   PASTE THIS ENTIRE BLOCK AT THE VERY BOTTOM OF
   assets/css/theme-world-order.css
   ==================================================== */

/* --- EDICTS BAND --- */
.edicts-band {
  padding: 2.8rem 0 3.2rem;
  color: #f3e9d2;
  background:
    radial-gradient(circle at top center, rgba(255,255,255,0.09), transparent 18%),
    linear-gradient(180deg, #1b3f70 0%, #102746 100%);
  border-top: 2px solid rgba(217, 179, 95, 0.54);
  border-bottom: 2px solid rgba(217, 179, 95, 0.54);
}

.edicts-intro {
  text-align: center;
  font-style: italic;
  color: rgba(243, 233, 210, 0.82);
  margin: 0 auto 1.8rem;
  max-width: 40rem;
}

.edict-list {
  display: grid;
  gap: 0.85rem;
  max-width: 52rem;
  margin: 0 auto;
}

.edict-item {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1rem;
  align-items: start;
  border: 1px solid rgba(216, 182, 104, 0.3);
  background: rgba(255, 255, 255, 0.05);
  padding: 1.1rem 1.2rem;
}

.edict-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #c9a24a;
  text-align: center;
  line-height: 1;
  padding-top: 0.15rem;
}

.edict-text {
  font-size: 1.05rem;
  line-height: 1.65;
}

/* --- MINISTRIES BAND --- */
.ministries-band {
  padding: 2.8rem 0 3.2rem;
}

.ministries-intro {
  text-align: center;
  font-style: italic;
  color: #4a5a70;
  margin: 0 auto 1.8rem;
  max-width: 40rem;
}

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
  margin-top: 0.5rem;
}

.ministry-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.2));
  border: 1px solid rgba(161, 122, 47, 0.45);
  padding: 1.4rem 1.2rem 1.2rem;
}

.ministry-card h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #173660;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ministry-tagline {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-style: italic;
  color: #7a6234;
}

.ministry-card p:last-child {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.62;
  color: #2f3f52;
}

/* --- MERCHANDISE BAND --- */
.merch-band {
  padding: 2.8rem 0 3.2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), transparent 18%), #fbf6ea;
  color: #232d38;
  border-top: 1px solid rgba(161, 122, 47, 0.3);
}

.merch-intro {
  text-align: center;
  font-style: italic;
  color: #4a5a70;
  margin: 0 auto 1.8rem;
  max-width: 40rem;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.merch-card {
  background: #fff;
  border: 1px solid rgba(161, 122, 47, 0.4);
  padding: 1.3rem 1.1rem 1.1rem;
  text-align: center;
}

.merch-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.96rem;
  color: #173660;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.merch-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.58;
  color: #3a4c60;
  font-style: italic;
}

/* --- GANTT BAND --- */
.gantt-band {
  padding: 2.8rem 0 3.2rem;
  border-top: 1px solid rgba(161, 122, 47, 0.3);
}

.gantt-intro {
  text-align: center;
  font-style: italic;
  color: #4a5a70;
  font-size: 0.93rem;
  margin: 0 auto 0.5rem;
}

.gantt-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.8rem;
  font-size: 0.97rem;
}

.gantt-table th {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #7a6234;
  border-bottom: 2px solid rgba(161, 122, 47, 0.4);
  padding: 0.5rem 0.7rem;
  text-align: left;
  font-weight: 400;
}

.gantt-table td {
  padding: 0.7rem 0.7rem;
  border-bottom: 1px solid rgba(161, 122, 47, 0.2);
  color: #2a3a4d;
  vertical-align: middle;
}

.gantt-status {
  font-size: 0.88rem;
  color: #7a6234;
  white-space: nowrap;
}

.gantt-bar-wrap {
  background: rgba(161, 122, 47, 0.15);
  height: 10px;
  border-radius: 2px;
  overflow: hidden;
  min-width: 100px;
}

.gantt-bar {
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, #b58a34, #d4b36a);
}

/* --- RESPONSIVE ADDITIONS --- */
@media (max-width: 920px) {
  .ministry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .edict-item {
    grid-template-columns: 1fr;
  }

  .edict-num {
    font-size: 1.1rem;
  }

  .merch-grid {
    grid-template-columns: 1fr;
  }

  .gantt-table th:last-child,
  .gantt-table td:last-child {
    min-width: 80px;
  }
}
