* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.7;
  color: #26262B;
  background-color: #F5F1E8;
  overflow-x: hidden;
}

.page-shell {
  background-color: #F5F1E8;
}

a {
  text-decoration: none;
}

/* ===================== TIDE-TABLE NAV ===================== */
.tidetable {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #F5F1E8;
  border-bottom: 2px solid #2E2C26;
}

.tidetable .tt-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.tidetable .tt-brandbox {
  display: flex;
  align-items: center;
  padding: 12px 0;
  z-index: 51;
}

.tidetable .tt-plate {
  background-color: #7E3242;
  color: #FAF7EE;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 3px;
  padding: 6px 12px;
  display: inline-block;
  border-radius: 3px 3px 0 0;
  text-decoration: none;
}

.tidetable .tt-plate .tt-full {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  color: #FAF7EE;
  text-transform: uppercase;
}

.tidetable .tt-gauge {
  position: relative;
  width: 34px;
  height: 44px;
  margin-left: 12px;
  border: 2px solid #7E3242;
  border-top: none;
  border-radius: 0 0 14px 14px;
}

.tidetable .tt-gauge:before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 8px;
  bottom: 8px;
  background-color: #FAF7EE;
}

.tidetable .tt-gauge:after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 20px;
  bottom: 20px;
  background-color: #7E3242;
  border-radius: 50%;
}

.tidetable .tt-links {
  display: flex;
  align-items: center;
}

.tidetable .tt-row {
  text-align: center;
  margin: 0 14px;
}

.tidetable .tt-row .tt-label {
  display: block;
  font-size: 15px;
  letter-spacing: 1px;
  color: #26262B;
  padding: 12px 0 6px;
}

.tidetable .tt-row:first-child .tt-label {
  font-weight: bold;
  color: #7E3242;
}

.tidetable .tt-row:first-child .tt-label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 10px;
  border: 2px solid #7E3242;
  border-left-width: 5px;
  margin-right: 6px;
  vertical-align: baseline;
}

.tidetable .tt-waterrule {
  height: 3px;
  width: 100%;
  border-top: 1px solid #7E3242;
  border-bottom: 1px solid #9A9A90;
}

.tidetable .tt-link,
.tidetable .tt-chip {
  text-decoration: none;
  color: #26262B;
  display: inline-block;
}

.tidetable .tt-link:hover {
  color: #7E3242;
}

.tidetable .tt-chip {
  background-color: #7E3242;
  color: #FAF7EE;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: bold;
  border: 2px solid #7E3242;
}

.tidetable .tt-chip:hover {
  background-color: #FAF7EE;
  color: #7E3242;
}

.tidetable .tt-toggle {
  display: none;
  background: none;
  border: 2px solid #7E3242;
  color: #7E3242;
  font-size: 22px;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 3px;
  cursor: pointer;
  z-index: 52;
}

.tidetable .tt-dblrule {
  height: 4px;
  border-top: 1px solid #B9C2C4;
  border-bottom: 1px solid #B9C2C4;
  background-color: #9A9A90;
  position: relative;
}

.tidetable .tt-dblrule:after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    #2E2C26 0,
    #2E2C26 3px,
    #B9C2C4 3px,
    #B9C2C4 12px
  );
}

/* ===================== EXCHANGE BELL HERO ===================== */
.exchbell {
  background-color: #F5F1E8;
}

.exchbell .eb-wall {
  position: relative;
  background-color: #F5F1E8;
}

.exchbell .eb-wallin {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 30px;
  position: relative;
}

.exchbell .eb-room {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 220px;
}

.exchbell .eb-scene {
  position: relative;
  width: 100%;
  min-height: 220px;
  background-color: #F5F1E8;
  border: 2px solid #9A9A90;
  border-radius: 6px;
}

.exchbell .eb-sel:before,
.exchbell .eb-sel:after {
  content: "";
  position: absolute;
  width: 6px;
  top: 4px;
  bottom: 4px;
}

.exchbell .eb-sel:before {
  left: 4px;
}

.exchbell .eb-sel:after {
  right: 4px;
  border-left: 2px solid #B9C2C4;
  border-right: 2px solid #B9C2C4;
}

.exchbell .eb-watermark {
  position: absolute;
  inset: 0;
  visibility: hidden;
}

.exchbell .eb-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.exchbell .eb-sealdraw {
  display: flex;
  gap: 4px;
  align-items: flex-end;
}

.exchbell .eb-stack {
  border-bottom: 4px solid #7E3242;
  border-left: 1px solid #B9C2C4;
  border-right: 1px solid #B9C2C4;
  padding: 8px 10px 10px;
  margin: 0 6px;
  background-color: #FAF7EE;
  font-family: Georgia, "Times New Roman", serif;
  color: #9A9A90;
  font-size: 26px;
  line-height: 0.9;
}

.exchbell .eb-stamp-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px double #7E3242;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7E3242;
  font-size: 20px;
  font-weight: bold;
  background-color: #FAF7EE;
  transform: rotate(-10deg);
}

.exchbell .eb-h1blk {
  flex: 1 1 0;
  min-width: 300px;
}

.exchbell .eb-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #7E3242;
  border-bottom: 2px solid #7E3242;
  padding-bottom: 6px;
  margin: 0 0 12px;
}

.exchbell .eb-h1 {
  font-size: 46px;
  line-height: 1.1;
  color: #26262B;
  margin: 0 0 8px;
  font-weight: bold;
}

.exchbell .eb-h1 .eb-sealstamp {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid #7E3242;
  margin-left: 8px;
  vertical-align: middle;
}

.exchbell .eb-h1 .eb-sealstamp::after {
  content: "S";
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  font-size: 14px;
  font-weight: bold;
  color: #7E3242;
  text-align: center;
}

.exchbell .eb-lede {
  font-size: 18px;
  color: #26262B;
  max-width: 620px;
  margin: 10px 0 18px;
}

.exchbell .eb-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-claret,
.btn-oak {
  display: inline-block;
  padding: 13px 24px;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
}

.btn-claret {
  background-color: #7E3242;
  border: 2px solid #7E3242;
  color: #FAF7EE;
}

.btn-claret:hover {
  background-color: #26262B;
  border-color: #26262B;
}

.btn-oak {
  background-color: #FAF7EE;
  border: 2px solid #2E2C26;
  color: #2E2C26;
}

.btn-oak:hover {
  background-color: #2E2C26;
  color: #FAF7EE;
}

.exchbell .eb-side-tools {
  display: flex;
  gap: 12px;
  align-items: center;
}

.exchbell .eb-nibpen,
.exchbell .eb-glass {
  background-color: #FAF7EE;
  color: #9A9A90;
  font-size: 13px;
  padding: 6px 8px;
  transform: rotate(10deg);
  border: 1px dashed #9A9A90;
}

.exchbell .eb-kick {
  background-color: #2E2C26;
}

.exchbell .eb-kickin {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.exchbell .eb-stat {
  text-align: center;
  padding: 24px 18px;
  position: relative;
}

.exchbell .eb-stat .eb-num {
  font-size: 38px;
  font-weight: bold;
  color: #FAF7EE;
  margin: 0;
}

.exchbell .eb-stat .eb-lbl {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9A9A90;
}

.exchbell .eb-stat:not(:last-child) {
  border-right: 2px solid #7E3242;
}

/* ===================== BOND-LEDGER ROWS + STATEMENT ===================== */
.bondrow {
  background-color: #F5F1E8;
}

.bondrow .br-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 50px 24px;
}

.ledger-statement {
  background-color: #2E2C26;
}

.ledger-statement .ls-in {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}

.ledger-statement .ls-figure {
  font-size: 74px;
  line-height: 1;
  font-weight: bold;
  color: #FAF7EE;
  margin: 0;
}

.ledger-statement .ls-figure span {
  color: #7E3242;
}

.ledger-statement .ls-pledge {
  font-size: 20px;
  color: #FAF7EE;
  margin: 10px 0 0;
  max-width: 700px;
}

.ledger-statement .ls-pledge em {
  color: #9A9A90;
  font-style: normal;
}

.le-row {
  background-color: #FAF7EE;
  border: 1px solid #B9C2C4;
  margin-bottom: 26px;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.le-row:nth-child(odd) {
  transform: translateX(40px);
}

.le-row:nth-child(even) {
  transform: translateX(0);
}

.le-row .le-rule {
  width: 6px;
  align-self: stretch;
  background-color: #7E3242;
  border-left: 2px solid #FAF7EE;
  box-shadow: inset -1px 0 0 #7E3242, inset 1px 0 0 #7E3242;
}

.le-row .le-seal {
  position: relative;
  margin-top: 16px;
  margin-left: 16px;
  min-width: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.le-row .le-seal .le-sealring {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 3px double #7E3242;
  background-color: #FAF7EE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7E3242;
  font-weight: bold;
  font-size: 16px;
}

.le-row .le-body {
  flex: 1;
  padding: 16px 20px 18px;
  display: flex;
  flex-direction: column;
}

.le-row .le-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.le-row .le-ref {
  font-family: Georgia, "Times New Roman", serif;
  color: #7E3242;
  font-size: 15px;
  letter-spacing: 2px;
}

.le-row .le-chip {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #26262B;
  padding: 5px 10px;
  background-color: #B9C2C4;
  color: #2E2C26;
}

.le-row .le-chip.equity,
.le-row .le-chip.credit,
.le-row .le-chip.mixed {
  color: #2E2C26;
  font-weight: bold;
}

.le-row h3 {
  font-size: 23px;
  margin: 10px 0 8px;
  color: #26262B;
  font-weight: bold;
}

.le-row p {
  font-size: 15px;
  margin: 0 0 10px;
  color: #26262B;
}

.le-row .le-detail {
  color: #7E3242;
  font-size: 14px;
  font-weight: bold;
  align-self: flex-start;
  text-decoration: none;
  border-bottom: 2px solid #7E3242;
  padding-bottom: 2px;
}

.le-row .le-detail:hover {
  color: #26262B;
  border-color: #2E2C26;
}

/* ===================== TIDE CYCLE ===================== */
.tidecycle {
  background-color: #9A9A90;
}

.tidecycle .tc-in {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px;
  position: relative;
  z-index: 1;
}

.tidecycle .tc-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tidecycle .tc-head h2 {
  font-size: 30px;
  color: #26262B;
  margin: 0;
  font-weight: bold;
}

.tidecycle .tc-head .tc-sub {
  color: #2E2C26;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tidecycle .tc-track {
  position: relative;
  height: 26px;
  margin: 10px 0 0;
}

.tidecycle .tc-track:before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 12px;
  height: 0;
  border-top: 2px dashed #7E3242;
}

.tidecycle .tc-cols {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}

.tidecycle .tc-stop {
  flex: 1 1 170px;
  max-width: 190px;
  text-align: center;
  position: relative;
}

.tidecycle .tc-stop .tc-bell {
  width: 22px;
  height: 22px;
  margin: 0 auto 4px;
  border-radius: 50%;
  background-color: #7E3242;
  border: 2px solid #2E2C26;
  position: relative;
}

.tidecycle .tc-stop .tc-bell:after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: -2px;
  width: 26px;
  height: 6px;
  background-color: #7E3242;
  border-radius: 50%;
}

.tidecycle .tc-stop .tc-title {
  font-weight: bold;
  color: #26262B;
  font-size: 17px;
  letter-spacing: 1px;
  margin-top: 8px;
}

.tidecycle .tc-stop .tc-note {
  color: #2E2C26;
  font-size: 13px;
  margin: 4px 0 0;
  line-height: 1.55;
}

.tidecycle .tc-stop .tc-done {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #F5F1E8;
  background-color: #7E3242;
  padding: 3px 8px;
  border-radius: 3px;
}

/* ===================== ACCENT STRIP ===================== */
.accentbook {
  background-color: #7E3242;
}

.accentbook .ab-in {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.accentbook .ab-stamp {
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #26262B;
  background-color: #9A9A90;
  border: 3px double #26262B;
  padding: 10px 16px;
  display: inline-block;
}

.accentbook .ab-text h3 {
  font-size: 24px;
  color: #FAF7EE;
  margin: 0 0 4px;
  font-weight: bold;
}

.accentbook .ab-text p {
  color: #FAF7EE;
  margin: 0;
  font-size: 16px;
  max-width: 560px;
}

.accentbook .ab-text p strong {
  color: #FAF7EE;
}

.ab-cta-white {
  background-color: #FAF7EE;
  color: #7E3242;
  display: inline-block;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 4px;
  border: 2px solid #FAF7EE;
  text-decoration: none;
  letter-spacing: 1px;
}

.ab-cta-white:hover {
  background-color: #26262B;
  border-color: #26262B;
  color: #FAF7EE;
}

/* ===================== QUAYSIDE FOOTER ===================== */
.quayside {
  background-color: #2E2C26;
}

.quayside .qs-harbour {
  border-top: 8px solid #9A9A90;
}

.quayside .qs-motto-band {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #45433c;
}

.quayside .qs-motto {
  font-size: 14px;
  letter-spacing: 3px;
  color: #9A9A90;
}

.quayside .qs-bell-ring {
  color: #7E3242;
  font-size: 26px;
}

.quayside .qs-cols {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.quayside .qs-col h4 {
  font-size: 15px;
  color: #F5F1E8;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 2px solid #7E3242;
  padding-bottom: 8px;
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
}

.quayside .qs-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.quayside .qs-col li {
  margin: 8px 0;
}

.quayside .qs-col a,
.quayside .qs-col span {
  color: #9A9A90;
  text-decoration: none;
  font-size: 15px;
}

.quayside .qs-col a:hover {
  color: #F5F1E8;
}

.quayside .qs-plate {
  background-color: #FAF7EE;
  margin: 0 16px;
  padding: 20px 26px;
  border-top: 5px solid #7E3242;
  position: relative;
  z-index: 2;
}

.quayside .qs-platein {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
}

.quayside .qs-plate .qs-company {
  font-weight: bold;
  color: #26262B;
  font-size: 17px;
  letter-spacing: 1px;
  margin: 0 0 6px;
}

.quayside .qs-plate address,
.quayside .qs-plate p {
  font-style: normal;
  color: #26262B;
  margin: 3px 0;
  font-size: 14px;
}

.quayside .qs-plate a {
  color: #26262B;
  font-size: 14px;
}

.quayside .qs-plate a:hover {
  text-decoration: underline;
}

.quayside .qs-legal {
  text-align: center;
}

.quayside .qs-legal p {
  color: #7E3242;
  font-size: 13px;
  letter-spacing: 1px;
  margin: 0;
  padding: 14px 24px 20px;
  position: relative;
  z-index: 2;
}

.quayside .qs-legal p a {
  color: #7E3242;
  text-decoration: underline;
}

/* ===================== SHARED SECTION SHELL ===================== */
.row-section {
  background-color: #FAF7EE;
}

.row-section .rs-in {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 40px;
}

.row-section .rs-eyebrow {
  display: inline-block;
  color: #7E3242;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.row-section h2 {
  font-size: 30px;
  color: #26262B;
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 16px;
  font-weight: bold;
}

.row-section p,
.row-section li {
  color: #26262B;
}

.row-section .rs-body {
  color: #26262B;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

html.no-js .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

html.js-on .reveal.pending {
  opacity: 0;
  transform: translateY(18px);
}

html.js-on .reveal.pending.is-revealed {
  opacity: 1;
  transform: none;
}

/* ===================== TIDE-CYCLE-CLASS CYCLE-LOADED LABEL (page context) ===================== */
.page-label {
  color: #9A9A90;
}

/* small horizontal rules util */
.rule-claretdouble {
  border: 0;
  border-top: 3px double #7E3242;
  margin: 24px 0;
}

/* inline stat used on subpages */
.metric-soft {
  background-color: #FAF7EE;
  border: 1px solid #B9C2C4;
  border-left: 5px solid #7E3242;
}

/* timeline dot used in cycle list fallback */
.fig-legacy {
  font-size: 40px;
  font-weight: bold;
  color: #7E3242;
  margin: 0;
}

.fig-legacy small {
  color: #9A9A90;
  display: block;
  font-size: 16px;
  font-weight: normal;
}

/* responsive */
@media (max-width: 860px) {
  .tidetable .tt-help {
    font-size: 13px;
  }

  .tidetable .tt-links {
    display: none;
  }

  .tidetable .tt-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #F5F1E8;
    border-bottom: 2px solid #7E3242;
    padding: 10px 24px 16px;
  }

  .tidetable .tt-row {
    margin: 6px 0;
  }

  .tidetable .tt-toggle {
    display: inline-block;
  }

  .le-row:nth-child(odd) {
    transform: none;
  }

  .le-row {
    flex-direction: column;
  }

  .le-row .le-seal {
    margin: 14px 16px 0;
    justify-content: flex-start;
  }

  .quayside .qs-cols {
    grid-template-columns: 1fr;
    gap: 20px;
    overflow-x: hidden;
  }

  .tidecycle .tc-cols {
    flex-direction: column;
  }

  .tidecycle .tc-stop {
    max-width: none;
    text-align: left;
  }

  .tidecycle .tc-stop .tc-bell {
    margin: 0;
    display: inline-block;
    margin-right: 6px;
  }

  .tidecycle .tc-track {
    display: none;
  }

  .exchbell .eb-h1 {
    font-size: 34px;
  }
}

/* ===================== SUBPAGE LEAD BAND ===================== */
.leadband {
  background-color: #F5F1E8;
  border-bottom: 2px solid #2E2C26;
}

.leadband .lb-in {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 24px 36px;
  display: block;
}

.leadband .lb-in .eb-ctas {
  margin-top: 4px;
}

.leadband .eb-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #7E3242;
  border-bottom: 2px solid #7E3242;
  padding-bottom: 6px;
  margin: 0 0 12px;
}

.leadband .eb-h1 {
  font-size: 42px;
  line-height: 1.12;
  color: #26262B;
  margin: 0 0 12px;
  font-weight: bold;
}

.leadband .eb-lede {
  font-size: 18px;
  color: #26262B;
  max-width: 720px;
  margin: 10px 0 18px;
}

/* page-prose wrapper for narrower reading columns on subpages */
.prose-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.sec-label {
  display: inline-block;
  width: 100%;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7E3242;
}

/* ===================== CONTACT ===================== */
.contact-layout {
  background-color: #FAF7EE;
  border-top: 3px double #7E3242;
  border-bottom: 1px solid #B9C2C4;
}

.contact-layout .cl-in {
  max-width: 1100px;
  margin: 0 auto;
  padding: 44px 24px 8px;
}

.contact-cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  color: #26262B;
  margin: 0 0 4px;
}

.contact-panel .cp-lead {
  color: #26262B;
  margin: 0 0 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form .cf-field {
  display: grid;
  gap: 6px;
}

.contact-form label {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7E3242;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: inherit;
  font-size: 15px;
  color: #26262B;
  background-color: #F5F1E8;
  border: 1px solid #9A9A90;
  border-left: 4px solid #7E3242;
  border-radius: 2px;
  padding: 11px 12px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #7E3242;
  border-left: 4px solid #7E3242;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.cf-submit {
  justify-self: start;
}

.contact-form .cf-note {
  display: none;
  font-size: 15px;
  color: #FAF7EE;
  background-color: #7E3242;
  padding: 10px 14px;
  border-radius: 3px;
}

.contact-side {
  background-color: #F5F1E8;
  border: 1px solid #B9C2C4;
  padding: 22px 24px;
}

.contact-side h3 {
  font-size: 20px;
  color: #7E3242;
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
}

.contact-side .cs-addr,
.contact-side address {
  font-style: normal;
  color: #26262B;
  margin: 4px 0;
  font-size: 15px;
  line-height: 1.9;
}

.contact-side .cs-rule {
  border: 0;
  border-top: 1px dashed #9A9A90;
  margin: 18px 0;
}

.contact-side a {
  color: #7E3242;
}

.contact-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 8px;
  margin: 6px 0 0;
}

.contact-hours dt {
  font-weight: bold;
  color: #26262B;
  font-size: 14px;
}

.contact-hours dd {
  margin: 0;
  color: #26262B;
  font-size: 14px;
  text-align: right;
}

.faq-strip {
  background-color: #F5F1E8;
}

.faq-strip .fa-in {
  max-width: 900px;
  margin: 0 auto;
  padding: 6px 24px 46px;
}

.faq-strip h2 {
  font-size: 26px;
  color: #7E3242;
  font-family: Georgia, "Times New Roman", serif;
  margin: 10px 0 18px;
  font-weight: bold;
}

.faq-block {
  background-color: #FAF7EE;
  border: 1px solid #B9C2C4;
  margin-bottom: 14px;
}

.faq-block summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-weight: bold;
  font-size: 17px;
  color: #26262B;
  position: relative;
}

.faq-block summary::-webkit-details-marker {
  display: none;
}

.faq-block summary::before {
  content: "+";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 12px;
  text-align: center;
  border-radius: 50%;
  background-color: #7E3242;
  color: #FAF7EE;
}

.faq-block[open] summary::before {
  content: "-";
}

.faq-block .fa-body {
  padding: 2px 18px 16px;
}

.faq-block .fa-body p {
  color: #26262B;
  margin: 0 0 8px;
  font-size: 15px;
}

.info-panel {
  background-color: #F5F1E8;
  color: #26262B;
  padding: 8px 0 44px;
}

.info-panel .ip-in {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.info-panel h2 {
  font-size: 24px;
  color: #7E3242;
  font-family: Georgia, "Times New Roman", serif;
  margin: 24px 0 10px;
  font-weight: bold;
}

@media (max-width: 820px) {
  .contact-cols {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-hours {
    grid-template-columns: 1fr;
  }

  .contact-hours dd {
    text-align: left;
  }
}

/* ===================== QUAYSHEET NOTE (homepage prose band) ===================== */
.quaysheet-note {
  background-color: #F5F1E8;
}

.quaysheet-note .qn-in {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 24px 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.quaysheet-note .qn-band {
  background-color: #FAF7EE;
  border: 1px solid #B9C2C4;
  border-top: 5px solid #7E3242;
  border-left: 5px solid #7E3242;
  padding: 26px 30px;
}

.quaysheet-note .qn-band h2 {
  font-size: 28px;
  color: #26262B;
  font-family: Georgia, "Times New Roman", serif;
  margin: 2px 0 14px;
  font-weight: bold;
}

.quaysheet-note .qn-band p {
  color: #26262B;
  font-size: 16px;
  margin: 0 0 14px;
}

.quaysheet-note .qn-strip {
  background-color: #2E2C26;
  padding: 26px 30px;
  border-top: 6px solid #7E3242;
}

.quaysheet-note .qn-rule {
  height: 3px;
  border-top: 1px solid #7E3242;
  border-bottom: 1px solid #7E3242;
  margin-bottom: 14px;
}

.quaysheet-note .qn-strip h3 {
  color: #FAF7EE;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  margin: 0 0 16px;
  font-weight: bold;
}

.quaysheet-note .qn-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.quaysheet-note .qn-list li {
  color: #F5F1E8;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #9A9A90;
}

.quaysheet-note .qn-list li .qn-key {
  color: #FAF7EE;
  font-weight: bold;
  margin-right: 6px;
}

.quaysheet-note .qn-close {
  color: #9A9A90;
  margin: 0;
}

@media (min-width: 900px) {
  .quaysheet-note .qn-in {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }
}
