/* ============================================================
   FLOURISH TRADE — Chart Room Stylesheet
   Palette:
   QUARTERDECK-GREEN  #16281F  body background
   SAIL-CLOTH         #EFE8D8  primary text
   BRASS-SEXTANT      #C79A4B  accent
   NIGHTGLASS-TEAL    #2E5D57  secondary (water tints, chips)
   HULL-DEEP          #0F1C15  deepest blocks
   DECK-SEAM          #3E4F42  raised seam panels
   STAR-LINE          #C9BFA8  thin sight lines
   ============================================================ */

/* ---------- Reset / Base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
  background-color: #16281F;
  color: #EFE8D8;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #C79A4B;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #EFE8D8;
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
  margin: 0 0 0.6em;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1.1em;
}

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: "Trebuchet MS", "DejaVu Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C79A4B;
  border: 1px solid #C79A4B;
  padding: 5px 12px;
  margin-bottom: 18px;
}

/* ---------- Scroll reveal (class based only) ---------- */

html.js .reveal-pre {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
}

html.js .reveal-pre.is-shown {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVIGATION — INSTRUMENT RACK TABS
   ============================================================ */

.instrack {
  position: relative;
  background-color: #0F1C15;
  border-bottom: 2px solid #3E4F42;
}

.instrack::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background-color: #C9BFA8;
}

.instrack-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px 34px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.instrack-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.instrack-plate {
  border: 2px solid #C79A4B;
  padding: 10px 18px;
  position: relative;
  background-color: #0F1C15;
}

.instrack-plate::before,
.instrack-plate::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid #C79A4B;
  border-radius: 50%;
}

.instrack-plate::before {
  left: -5px;
  top: 50%;
  margin-top: -4px;
}

.instrack-plate::after {
  right: -5px;
  top: 50%;
  margin-top: -4px;
}

.instrack-brandname {
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  color: #EFE8D8;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.instrack-tagline {
  display: block;
  font-family: "Trebuchet MS", "DejaVu Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C79A4B;
  margin-top: 4px;
}

.instrack-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: flex-end;
}

.instrack-tab {
  position: relative;
  display: block;
}

.instrack-tab:nth-child(odd) {
  padding-top: 26px;
}

.instrack-tab:nth-child(even) {
  padding-top: 8px;
}

.instrack-hook {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 22px;
  margin-left: -1px;
  background-color: #C9BFA8;
}

.instrack-hook::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background-color: #C79A4B;
}

.instrack-link {
  display: block;
  background-color: #3E4F42;
  border: 1px solid #C9BFA8;
  color: #EFE8D8;
  padding: 11px 16px 8px;
  min-width: 96px;
  text-align: center;
  transition: background-color 220ms ease, color 220ms ease;
}

.instrack-link:hover,
.instrack-link:focus {
  background-color: #C79A4B;
  color: #0F1C15;
  text-decoration: none;
}

.instrack-link.is-active {
  background-color: #C79A4B;
  color: #0F1C15;
  border-color: #C79A4B;
}

.instrack-fixture {
  display: block;
  font-family: "Trebuchet MS", "DejaVu Sans", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9BFA8;
  margin-top: 4px;
}

.instrack-link:hover .instrack-fixture,
.instrack-link.is-active .instrack-fixture {
  color: #0F1C15;
}

.instrack-toggle {
  display: none;
  background-color: #3E4F42;
  border: 1px solid #C79A4B;
  color: #EFE8D8;
  font-family: "Trebuchet MS", "DejaVu Sans", sans-serif;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
}

.instrack-toggle:hover {
  background-color: #C79A4B;
  color: #0F1C15;
}

/* ============================================================
   HERO — SEXTANT ARC
   ============================================================ */

.sextantarc {
  position: relative;
  padding: 70px 0 80px;
  background-color: #16281F;
  border-bottom: 1px solid #3E4F42;
  overflow-x: hidden;
}

.sextantarc-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.sextantarc-copy {
  flex: 1 1 520px;
  max-width: 620px;
}

.sextantarc-title {
  font-size: 2.9rem;
  line-height: 1.12;
  color: #EFE8D8;
  margin-bottom: 24px;
}

.sextantarc-title em {
  font-style: normal;
  display: block;
}

.sextantarc-brass {
  color: #C79A4B;
  text-decoration: underline;
  text-decoration-color: #C79A4B;
  text-underline-offset: 6px;
}

.sextantarc-body {
  font-size: 1.06rem;
  color: #EFE8D8;
  max-width: 560px;
}

.sextantarc-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.chartweight {
  display: inline-block;
  background-color: #C79A4B;
  color: #0F1C15;
  font-family: "Trebuchet MS", "DejaVu Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 15px 26px 13px;
  border: 2px solid #C79A4B;
  position: relative;
  transition: background-color 220ms ease, color 220ms ease;
}

.chartweight::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 5px;
  height: 1px;
  background-color: #0F1C15;
}

.chartweight:hover,
.chartweight:focus {
  background-color: #0F1C15;
  color: #C79A4B;
  text-decoration: none;
}

.chartweight-secondary {
  background-color: #0F1C15;
  color: #EFE8D8;
  border-color: #C79A4B;
}

.chartweight-secondary::after {
  background-color: #C79A4B;
}

.chartweight-secondary:hover,
.chartweight-secondary:focus {
  background-color: #C79A4B;
  color: #0F1C15;
}

.chartweight-fix {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  margin-top: 2px;
}

/* ---------- Sextant instrument (pure CSS) ---------- */

.sextantarc-instrument {
  flex: 1 1 420px;
  max-width: 500px;
  margin: 0 auto;
}

.sextant {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 470px;
  margin: 0 auto;
}

.sextant-arc {
  position: absolute;
  left: 20px;
  bottom: 60px;
  width: 340px;
  height: 340px;
  border: 14px solid #C79A4B;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.sextant-arc-inner {
  position: absolute;
  left: 44px;
  bottom: 84px;
  width: 292px;
  height: 292px;
  border: 2px solid #C9BFA8;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.sextant-drum {
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 5px solid #C79A4B;
  background-color: #0F1C15;
}

.sextant-drum::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background-color: #C79A4B;
}

.sextant-index {
  position: absolute;
  left: 74px;
  bottom: 74px;
  width: 2px;
  height: 250px;
  background-color: #EFE8D8;
  transform-origin: bottom center;
  transform: rotate(38deg);
}

.sextant-index::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #C79A4B;
}

.sextant-sightray {
  position: absolute;
  left: 148px;
  top: 40px;
  width: 240px;
  height: 1px;
  background-color: #C9BFA8;
  transform: rotate(-16deg);
  transform-origin: left center;
}

.sextant-star {
  position: absolute;
  right: 34px;
  top: 26px;
  width: 26px;
  height: 26px;
  background-color: #C79A4B;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.sextant-startag {
  position: absolute;
  right: 8px;
  top: 58px;
  font-family: "Trebuchet MS", "DejaVu Sans", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: #C9BFA8;
}

.sextant-chart {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  background-color: #0F1C15;
  border: 1px solid #3E4F42;
}

.sextant-rhumb {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 150px;
  background-color: #2E5D57;
  transform-origin: bottom center;
}

.sextant-rhumb-a { transform: rotate(-64deg); }
.sextant-rhumb-b { transform: rotate(-38deg); }
.sextant-rhumb-c { transform: rotate(-13deg); }
.sextant-rhumb-d { transform: rotate(13deg); }
.sextant-rhumb-e { transform: rotate(40deg); }
.sextant-rhumb-f { transform: rotate(66deg); }

.sextant-porthole {
  position: absolute;
  right: 6px;
  bottom: 96px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 10px solid #3E4F42;
  background-color: #2E5D57;
}

.sextant-porthole::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  border: 2px solid #C9BFA8;
}

.sextant-dividers {
  position: absolute;
  left: 210px;
  bottom: 26px;
  width: 130px;
  height: 2px;
  background-color: #EFE8D8;
  transform: rotate(-24deg);
}

.sextant-dividers::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -6px;
  width: 12px;
  height: 14px;
  border: 2px solid #C79A4B;
  border-radius: 50% 50% 50% 50%;
}

.sextant-caption {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Trebuchet MS", "DejaVu Sans", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C79A4B;
}

/* ============================================================
   SIGHT LOG ROWS
   ============================================================ */

.sightlogs {
  padding: 0;
  background-color: #16281F;
}

.sightlogs-intro {
  padding: 64px 0 40px;
}

.sightlogs-intro h2 {
  font-size: 2.1rem;
  color: #EFE8D8;
  max-width: 760px;
}

.sightlogs-intro p {
  max-width: 760px;
  color: #EFE8D8;
  font-size: 1.05rem;
}

.sightlog {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border-top: 1px solid #C9BFA8;
  border-bottom: 1px solid #3E4F42;
  background-color: #3E4F42;
}

.sightlog:nth-child(odd) {
  transform: skewY(1deg);
}

.sightlog:nth-child(even) {
  transform: skewY(-1deg);
  background-color: #2E5D57;
}

.sightlog-deep {
  background-color: #0F1C15;
  color: #EFE8D8;
}

.sightlog-fix {
  flex: 0 0 230px;
  background-color: #0F1C15;
  color: #EFE8D8;
  padding: 40px 26px;
  position: relative;
  border-right: 2px solid #C79A4B;
}

.sightlog-deep .sightlog-fix {
  background-color: #2E5D57;
  border-right-color: #C9BFA8;
}

.sightlog-fixnum {
  display: block;
  font-family: "Trebuchet MS", "DejaVu Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C79A4B;
}

.sightlog-fixlabel {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #EFE8D8;
  margin-top: 8px;
}

.sightlog-stardot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #C79A4B;
  margin-top: 18px;
}

.sightlog-panel {
  flex: 1 1 500px;
  padding: 40px 34px;
}

.sightlog-panel h3 {
  color: #EFE8D8;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.sightlog-panel p {
  color: #EFE8D8;
  margin-bottom: 10px;
}

.sightlog-panel a {
  color: #0F1C15;
  background-color: #C79A4B;
  padding: 2px 6px;
  font-weight: 700;
}

.sightlog-panel a:hover {
  color: #C79A4B;
  background-color: #0F1C15;
  text-decoration: none;
}

.sightlog-bearing {
  position: relative;
  height: 30px;
  margin-top: 18px;
  border-top: 1px solid #C9BFA8;
}

.sightlog-bearing-fill {
  position: absolute;
  top: -1px;
  left: 0;
  height: 3px;
  background-color: #C79A4B;
}

.sightlog-bearing-label {
  position: absolute;
  right: 0;
  top: 8px;
  font-family: "Trebuchet MS", "DejaVu Sans", sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  color: #C9BFA8;
}

.bearing-a { width: 24%; }
.bearing-b { width: 36%; }
.bearing-c { width: 48%; }
.bearing-d { width: 60%; }
.bearing-e { width: 74%; }
.bearing-f { width: 90%; }

/* ============================================================
   ACCENT STRIP — SAILING DISPATCH
   ============================================================ */

.dispatch {
  background-color: #C79A4B;
  color: #0F1C15;
  padding: 46px 0;
  border-top: 2px solid #C9BFA8;
  border-bottom: 2px solid #C9BFA8;
  text-align: center;
}

.dispatch-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.dispatch-glyph {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 3px solid #0F1C15;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
  margin-right: 10px;
  vertical-align: middle;
}

.dispatch h2 {
  font-size: 1.7rem;
  color: #0F1C15;
  margin-bottom: 10px;
}

.dispatch p {
  color: #0F1C15;
  font-size: 1.04rem;
  margin-bottom: 0;
}

.dispatch a {
  color: #0F1C15;
  text-decoration: underline;
  font-weight: 700;
}

.dispatch a:hover {
  color: #EFE8D8;
}

/* ============================================================
   INSTRUMENT RACK STRIP (secondary content band)
   ============================================================ */

.rackstrip {
  background-color: #0F1C15;
  padding: 62px 0 70px;
  border-bottom: 1px solid #3E4F42;
}

.rackstrip h2 {
  color: #EFE8D8;
  font-size: 2rem;
  max-width: 800px;
}

.rackstrip p {
  color: #EFE8D8;
  max-width: 800px;
}

.rackmodules {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 34px;
}

.rackmodule {
  border-left: 4px solid #C79A4B;
  background-color: #16281F;
  padding: 24px 28px;
}

.rackmodule:nth-child(2) {
  margin-left: 40px;
  border-left-color: #C9BFA8;
}

.rackmodule:nth-child(3) {
  margin-left: 80px;
  border-left-color: #2E5D57;
}

.rackmodule h3 {
  color: #EFE8D8;
  font-size: 1.28rem;
  margin-bottom: 8px;
}

.rackmodule p {
  color: #EFE8D8;
  margin-bottom: 0;
}

/* ============================================================
   CHART NOTES
   ============================================================ */

.chartnotes {
  background-color: #16281F;
  padding: 64px 0 68px;
  border-bottom: 1px solid #3E4F42;
}

.chartnotes h2 {
  color: #EFE8D8;
  font-size: 2.1rem;
  max-width: 820px;
}

.chartnotes p {
  color: #EFE8D8;
  max-width: 840px;
  font-size: 1.05rem;
}

.chartnote-panels {
  margin-top: 36px;
  border-top: 1px solid #C9BFA8;
}

.chartnote-panel {
  border-bottom: 1px solid #3E4F42;
  padding: 24px 0 20px;
  max-width: 900px;
}

.chartnote-panel:nth-child(odd) {
  padding-left: 30px;
  border-left: 3px solid #C79A4B;
}

.chartnote-panel:nth-child(even) {
  padding-left: 18px;
  border-left: 3px solid #2E5D57;
  margin-left: 40px;
}

.chartnote-panel h3 {
  color: #EFE8D8;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.chartnote-panel p {
  color: #EFE8D8;
  margin-bottom: 0;
}

.chartnotes-close {
  margin-top: 30px;
  border-top: 1px solid #3E4F42;
  padding-top: 20px;
}

.chartnotes-close a {
  color: #C79A4B;
  text-decoration: underline;
}

/* ============================================================
   FOOTER — CHART DESK BASE
   ============================================================ */

.chartdesk {
  background-color: #0F1C15;
  color: #EFE8D8;
  position: relative;
  padding-top: 60px;
}

.chartdesk-rail {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #C9BFA8;
}

.chartdesk-weight {
  position: absolute;
  top: 8px;
  width: 34px;
  height: 20px;
  background-color: #C79A4B;
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}

.chartdesk-weight-a { left: 12%; }
.chartdesk-weight-b { left: 50%; margin-left: -17px; }
.chartdesk-weight-c { right: 12%; }

.chartdesk-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

.chartdesk-tab {
  border: 1px solid #C9BFA8;
  background-color: #3E4F42;
  padding: 9px 18px;
}

.chartdesk-tab a {
  color: #EFE8D8;
  font-family: "Trebuchet MS", "DejaVu Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chartdesk-tab a:hover {
  color: #C79A4B;
  text-decoration: none;
}

.chartdesk-body {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
}

.chartdesk-plate {
  flex: 1 1 480px;
  border: 2px solid #C79A4B;
  padding: 26px 28px;
  position: relative;
}

.chartdesk-plate h2 {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #EFE8D8;
}

.chartdesk-plate p {
  color: #EFE8D8;
  margin-bottom: 0;
}

.chartdesk-detail {
  flex: 1 1 340px;
}

.chartdesk-detail p {
  color: #EFE8D8;
  margin-bottom: 8px;
}

.chartdesk-detail a {
  color: #C79A4B;
}

.chartdesk-base {
  border-top: 1px solid #3E4F42;
  padding: 22px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #EFE8D8;
}

.chartdesk-fixnum {
  display: inline-block;
  border: 1px solid #C79A4B;
  color: #C79A4B;
  font-family: "Trebuchet MS", "DejaVu Sans", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 4px 12px;
}

/* ============================================================
   SUBPAGE — PAGE HEAD
   ============================================================ */

.pagehead {
  background-color: #0F1C15;
  border-bottom: 2px solid #3E4F42;
  padding: 56px 0 50px;
}

.pagehead h1 {
  color: #EFE8D8;
  font-size: 2.4rem;
  max-width: 820px;
}

.pagehead p {
  color: #EFE8D8;
  max-width: 760px;
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.svcblock {
  padding: 60px 0;
  background-color: #16281F;
}

.svclist {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.svcrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid #3E4F42;
  background-color: #3E4F42;
}

.svcrow:nth-child(even) {
  background-color: #2E5D57;
}

.svcrow-num {
  flex: 0 0 190px;
  background-color: #0F1C15;
  color: #EFE8D8;
  padding: 32px 24px;
  border-right: 2px solid #C79A4B;
}

.svcrow-num span {
  display: block;
  font-family: "Trebuchet MS", "DejaVu Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: #C79A4B;
  text-transform: uppercase;
}

.svcrow-num strong {
  display: block;
  font-size: 2.2rem;
  color: #EFE8D8;
  margin-top: 6px;
}

.svcrow-body {
  flex: 1 1 500px;
  padding: 32px 34px;
}

.svcrow-body h2 {
  color: #EFE8D8;
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.svcrow-body p {
  color: #EFE8D8;
}

.svcrow-body ul {
  margin: 0 0 12px;
  padding-left: 20px;
  color: #EFE8D8;
}

.svcrow-body li {
  margin-bottom: 6px;
}

.processband {
  background-color: #0F1C15;
  padding: 62px 0;
  border-top: 1px solid #C9BFA8;
  border-bottom: 1px solid #3E4F42;
}

.processband h2 {
  color: #EFE8D8;
  font-size: 2rem;
}

.processband p {
  color: #EFE8D8;
  max-width: 820px;
}

.processsteps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
  max-width: 900px;
}

.processstep {
  border-left: 3px solid #C79A4B;
  padding: 16px 22px;
  background-color: #16281F;
}

.processstep:nth-child(2) { margin-left: 28px; }
.processstep:nth-child(3) { margin-left: 56px; border-left-color: #C9BFA8; }
.processstep:nth-child(4) { margin-left: 84px; border-left-color: #2E5D57; }
.processstep:nth-child(5) { margin-left: 112px; }

.processstep h3 {
  color: #EFE8D8;
  font-size: 1.14rem;
  margin-bottom: 6px;
}

.processstep p {
  color: #EFE8D8;
  margin-bottom: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contactblock {
  padding: 60px 0 70px;
  background-color: #16281F;
}

.contactgrid {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
}

.contactform-col {
  flex: 1 1 520px;
}

.contactform-col h2 {
  color: #EFE8D8;
  font-size: 1.9rem;
}

.contactform-col p {
  color: #EFE8D8;
}

.contactform {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
}

.contactfield {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contactfield label {
  font-family: "Trebuchet MS", "DejaVu Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C79A4B;
}

.contactfield input,
.contactfield textarea {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  padding: 13px 14px;
  background-color: #0F1C15;
  color: #EFE8D8;
  border: 1px solid #3E4F42;
}

.contactfield input:focus,
.contactfield textarea:focus {
  outline: 2px solid #C79A4B;
  border-color: #C79A4B;
}

.contactfield textarea {
  min-height: 150px;
  resize: vertical;
}

.contactsubmit {
  align-self: flex-start;
  background-color: #C79A4B;
  color: #0F1C15;
  border: 2px solid #C79A4B;
  font-family: "Trebuchet MS", "DejaVu Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px;
  cursor: pointer;
}

.contactsubmit:hover {
  background-color: #0F1C15;
  color: #C79A4B;
}

.contactnote {
  font-size: 0.88rem;
  color: #EFE8D8;
  margin-top: 12px;
}

.contactaside-col {
  flex: 1 1 340px;
}

.contactcard {
  border: 1px solid #3E4F42;
  background-color: #0F1C15;
  padding: 26px 28px;
  margin-bottom: 24px;
}

.contactcard h3 {
  color: #EFE8D8;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contactcard p {
  color: #EFE8D8;
  margin-bottom: 6px;
}

.contactcard a {
  color: #C79A4B;
}

.hourslist {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #EFE8D8;
}

.hourslist li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid #3E4F42;
}

.hourslist li:last-child {
  border-bottom: none;
}

.faqband {
  background-color: #0F1C15;
  padding: 60px 0 70px;
  border-top: 1px solid #C9BFA8;
}

.faqband h2 {
  color: #EFE8D8;
  font-size: 2rem;
}

.faqitem {
  border: 1px solid #3E4F42;
  margin-bottom: 14px;
  background-color: #16281F;
}

.faqq {
  width: 100%;
  text-align: left;
  background-color: #3E4F42;
  color: #EFE8D8;
  border: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  padding: 18px 22px;
  cursor: pointer;
}

.faqq:hover {
  background-color: #C79A4B;
  color: #0F1C15;
}

.faqa {
  display: none;
  padding: 18px 22px;
  color: #EFE8D8;
}

.faqa.is-open {
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .sextantarc-title {
    font-size: 2.2rem;
  }

  .instrack-toggle {
    display: inline-block;
  }

  .instrack-tabs {
    display: none;
    width: 100%;
    flex-direction: column;
  }

  .instrack-tabs.is-open {
    display: flex;
  }

  .instrack-tab:nth-child(odd),
  .instrack-tab:nth-child(even) {
    padding-top: 6px;
  }

  .instrack-hook {
    display: none;
  }
}

@media (max-width: 640px) {
  .sextantarc-title {
    font-size: 1.8rem;
  }

  .sightlog-fix,
  .svcrow-num {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 2px solid #C79A4B;
  }

  .sightlog:nth-child(odd),
  .sightlog:nth-child(even) {
    transform: none;
  }

  .sextant {
    height: 380px;
    transform: scale(0.82);
    transform-origin: top left;
  }

  .rackmodule:nth-child(2),
  .rackmodule:nth-child(3) {
    margin-left: 0;
  }

  .processstep:nth-child(2),
  .processstep:nth-child(3),
  .processstep:nth-child(4),
  .processstep:nth-child(5) {
    margin-left: 0;
  }
}
