/* ============================================================
   MIGHTYSKY — STORM WATCHING POST
   Palette:
     storm-approach   #131518  (body)
     squall-panel     #1B1F26  (raised cards)
     cell-deep        #232933  (deeper panels / footer)
     lightning-white  #F4F6F9  (headlines)
     rain-haze        #C2C9D4  (body text)
     cloudbolt-gold   #E8B33C  (accent lightning gold)
     sky-core         #4E7FB0  (storm blue rule / secondary)
     drizzle-mint     #7FBFA3  (rain gauge tertiary)
     hail-grey        #8E97A3  (hailstone dots)
     hairline         #2C333D  (thin separators)
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  margin: 0;
  background-color: #131518;
  color: #C2C9D4;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.home-page {
  background-color: #131518;
}

a {
  color: #E8B33C;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #F4F6F9;
}

.storm-shell {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px 40px;
  display: flex;
  gap: 48px;
}

/* ---------------- scroll reveal (safe without JS) ---------- */
.fade-up {
  opacity: 1;
  transform: none;
}

/* ---------- floating TOC rail (sticky, never fixed) ---------- */
.storm-rail {
  flex: 0 0 260px;
  width: 260px;
  position: sticky;
  top: 64px;
  align-self: flex-start;
  height: fit-content;
}

.storm-toc-shadow {
  box-shadow: none;
}

nav.toc {
  border-left: 1px solid #2C333D;
  padding: 8px 0 8px 24px;
}

.toc-home {
  letter-spacing: 0.16em;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  font-size: 13px;
  color: #E8B33C;
  padding-bottom: 18px;
  border-bottom: 1px solid #2C333D;
  margin-bottom: 14px;
  white-space: nowrap;
}

a.toc-brand-link {
  color: #E8B33C;
  font-weight: bold;
  font-size: 13px;
}

a.toc-brand-link:hover {
  color: #F4F6F9;
}

span.toc-dot {
  color: #4E7FB0;
  margin: 0 6px;
}

ul.toc-list {
  list-style: none;
  border-bottom: 1px solid #2C333D;
  padding-bottom: 16px;
  margin-bottom: 18px;
}

ul.toc-list li {
  display: block;
}

a.toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #C2C9D4;
  font-size: 15px;
  line-height: 1.5;
  padding: 6px 0;
}

a.toc-link:hover {
  color: #F4F6F9;
}

a.toc-link.active {
  color: #E8B33C;
}

i.toc-tick {
  width: 8px;
  height: 4px;
  background-color: #2C333D;
  display: inline-block;
  flex: 0 0 8px;
  border-radius: 2px;
}

a.toc-link.active i.toc-tick {
  background-color: #E8B33C;
  width: 18px;
}

/* --------------- CSS barometer dial ------------------------- */
.barometer {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 6px auto 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 44%, #232933 0%, #1B1F26 62%, #131518 100%);
  border: 2px solid #2C333D;
}

.baro-halo {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid #2C333D;
}

.baro-tick {
  position: absolute;
  width: 2px;
  height: 8px;
  background-color: #4E7FB0;
  left: 50%;
  top: 50%;
}

.baro-tick-0 { transform: rotate(0deg) translateY(-66px); }
.baro-tick-1 { transform: rotate(90deg) translateY(-66px); }
.baro-tick-2 { transform: rotate(180deg) translateY(-66px); }
.baro-tick-3 { transform: rotate(270deg) translateY(-66px); }

.baro-label {
  position: absolute;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #8E97A3;
  font-family: Georgia, serif;
  top: 50%;
  margin-top: -6px;
}

.baro-label-l { left: 12px; }
.baro-label-r { right: 12px; }

.baro-face {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background-color: #1B1F26;
}

.baro-mark {
  position: absolute;
  width: 2px;
  height: 6px;
  background-color: #8E97A3;
  left: 50%;
  top: 50%;
}

.bm1 { transform: rotate(30deg) translateY(-55px); }
.bm2 { transform: rotate(60deg) translateY(-55px); }
.bm3 { transform: rotate(120deg) translateY(-55px); }

.baro-needle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 44px;
  margin: -40px 0 0 -1.5px;
  background-color: #7FBFA3;
  clip-path: polygon(50% 100%, 100% 55%, 88% 0, 12% 0, 0 55%);
  animation: needle-settle 1.4s ease-out forwards;
  transform-origin: center bottom;
}

.baro-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background-color: #E8B33C;
  border: 2px solid #F4F6F9;
  z-index: 2;
}

.baro-read {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  text-align: center;
  color: #7FBFA3;
  font-size: 10px;
  letter-spacing: 0.2em;
}

@keyframes needle-settle {
  0%   { transform: rotate(-70deg); }
  60%  { transform: rotate(42deg); }
  100% { transform: rotate(52deg); }
}

/* --------------- reading column ----------------------------- */
.storm-column {
  flex: 1 1 auto;
  max-width: 680px;
  margin-left: auto;
  margin-right: 15%;
}

/* masthead */
.storm-mast {
  margin-bottom: 18px;
}

p.kicker {
  color: #8E97A3;
  letter-spacing: 0.3em;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 26px;
  border-bottom: 1px solid #2C333D;
  padding-bottom: 18px;
}

h1.mast-title {
  color: #F4F6F9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

span.gold-word {
  color: #E8B33C;
}

p.mast-lead {
  color: #C2C9D4;
  font-size: 17.5px;
  line-height: 1.8;
}

.mast-rule {
  height: 1px;
  width: 90px;
  background-color: #4E7FB0;
  margin: 30px 0 14px;
}

/* longread sections */
.longread-section {
  margin: 34px 0;
  clear: both;
}

.section-number {
  color: #E8B33C;
  font-size: 15px;
  letter-spacing: 0.3em;
  margin-bottom: 6px;
  font-family: Georgia, serif;
}

.longread-section h2 {
  color: #F4F6F9;
  font-size: 29px;
  font-weight: 400;
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 18px;
  line-height: 1.2;
}

.longread-section p {
  color: #C2C9D4;
  font-size: 16px;
  margin-bottom: 16px;
}

.dot-divider {
  width: 100%;
  height: 10px;
  background-image: radial-gradient(circle, #8E97A3 1.4px, transparent 1.6px);
  background-size: 14px 10px;
  background-repeat: repeat-x;
  margin: 6px 0;
}

/* cross reference highlight helper */
.inline-gold {
  color: #E8B33C;
}

/* --------------- weather log card (side) -------------------- */
.weather-note {
  display: none;
}

.weather-log-card {
  background-color: #1B1F26;
  border: 1px solid #2C333D;
  border-radius: 4px;
  padding: 24px 26px 22px;
  margin: 34px 0;
}

.wb-title {
  color: #F4F6F9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 18px;
  font-family: Georgia, serif;
}

.wb-title .wb-week {
  color: #8E97A3;
  letter-spacing: 0.12em;
}

ul.wb-entries {
  list-style: none;
}

.wb-entry {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid #2C333D;
}

.wb-date {
  width: 40px;
  flex: 0 0 40px;
  color: #E8B33C;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-family: Georgia, serif;
}

.wb-pill {
  flex: 1 1 auto;
  height: 9px;
  background-color: #131518;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #2C333D;
}

.pill-fill {
  display: block;
  height: 100%;
  border-radius: 5px;
}

.pill-orders  .pill-fill { background-color: #4E7FB0; }
.pill-shipped .pill-fill { background-color: #8E97A3; }
.pill-delivered .pill-fill { background-color: #7FBFA3; }
.pill-returned .pill-fill { background-color: #E8B33C; }
.pill-net .pill-fill { background-color: #F4F6F9; }

.wb-meta {
  width: 130px;
  flex: 0 0 130px;
  text-align: right;
  color: #C2C9D4;
  font-size: 13px;
}

.wb-meta b {
  color: #F4F6F9;
  font-weight: 400;
}

.wb-note {
  color: #8E97A3;
  font-size: 13.5px;
  margin-top: 18px;
  line-height: 1.65;
}

/* --------------- contact desk section ----------------------- */
.contact-desk {
  border-top: 1px solid #2C333D;
  padding-top: 34px;
}

.desk-last {
  color: #E8B33C;
}

a.desk-link {
  display: inline-block;
  color: #E8B33C;
  font-size: 17px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #4E7FB0;
  padding-bottom: 5px;
  margin: 4px 0 22px;
}

a.desk-link:hover {
  color: #F4F6F9;
  border-color: #F4F6F9;
}

.desk-direct {
  color: #8E97A3;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 4px;
}

/* --------------- footer ------------------------------------- */
.rain-zone {
  position: relative;
  background-image:
    linear-gradient(90deg, transparent 96%, #2C333D 96%),
    linear-gradient(180deg, #131518 0%, #1B1F26 35%, #232933 100%);
  padding: 0 40px 0;
  overflow: hidden;
}

.rain-zone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 210px;
  background-image: radial-gradient(circle, #232933 1.3px, transparent 1.5px);
  background-size: 26px 22px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}

.windvane {
  display: none;
}

.storm-foot {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 0 30px;
  text-align: center;
  background-color: #232933;
}

.foot-rule {
  width: 120px;
  height: 1px;
  background-color: #E8B33C;
  margin: 0 auto 22px;
}

nav.foot-nav {
  margin-bottom: 20px;
}

nav.foot-nav a {
  color: #F4F6F9;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: Georgia, serif;
}

nav.foot-nav a:hover {
  color: #E8B33C;
}

span.foot-sep {
  color: #4E7FB0;
  margin: 0 8px;
}

.foot-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.bolt-glyph {
  font-size: 18px;
  color: #E8B33C;
}

.foot-name {
  color: #E8B33C;
  letter-spacing: 0.34em;
  font-size: 17px;
  font-family: Georgia, serif;
}

p.foot-legal {
  color: #8E97A3;
  font-size: 13px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* ================ secondary page (services / contact) ======== */
.site-header {
  background-color: #1B1F26;
  border-bottom: 1px solid #2C333D;
  position: relative;
  z-index: 20;
}

.site-header.docked {
  position: sticky;
  top: 0;
}

.shell-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a.brand {
  color: #F4F6F9;
  font-size: 20px;
  letter-spacing: 0.2em;
  font-family: Georgia, serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

a.brand i.brand-bolt {
  font-style: normal;
  color: #E8B33C;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header-nav a.nav-link {
  color: #C2C9D4;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: Georgia, serif;
}

.header-nav a.nav-link:hover,
.header-nav a.nav-link.active {
  color: #E8B33C;
}

button.nav-toggle,
span.nav-burger {
  display: none;
}

/* secondary masthead */
.sub-hero {
  background-color: #131518;
  border-bottom: 1px solid #2C333D;
  padding: 60px 28px 40px;
}

.sub-hero .sub-title {
  max-width: 760px;
  margin: 0 auto;
}

.sub-hero h1 {
  color: #F4F6F9;
  font-size: 42px;
  font-weight: 400;
  font-family: Georgia, serif;
  margin-bottom: 18px;
}

.sub-hero h1 span.sub-gold {
  color: #E8B33C;
}

.sub-hero p.sub-lead {
  color: #C2C9D4;
  font-size: 16.5px;
  max-width: 700px;
  margin: 0 auto;
}

.rule-sky {
  width: 90px;
  height: 2px;
  background-color: #4E7FB0;
  margin: 22px auto 0;
}

.page-body {
  background-color: #131518;
}

.page-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 46px 28px 30px;
}

/* service blocks */
.service-card {
  background-color: #1B1F26;
  border: 1px solid #2C333D;
  border-radius: 4px;
  padding: 30px 32px 26px;
  margin-bottom: 26px;
}

.service-card .sc-top {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #2C333D;
  padding-bottom: 14px;
}

.service-card .sc-num {
  color: #E8B33C;
  font-size: 13px;
  letter-spacing: 0.24em;
}

.service-card h2 {
  color: #F4F6F9;
  font-size: 24px;
  font-weight: 400;
  font-family: Georgia, serif;
}

.service-card p {
  color: #C2C9D4;
  font-size: 15.5px;
  margin-bottom: 13px;
}

.h2-read {
  color: #F4F6F9;
  font-size: 27px;
  font-family: Georgia, serif;
  font-weight: 400;
  margin: 40px 0 22px;
}

.h2-read i {
  color: #E8B33C;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 6px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.process-step {
  background-color: #232933;
  border-top: 3px solid #4E7FB0;
  padding: 20px;
}

.process-step.hot {
  border-top-color: #E8B33C;
}

.process-step .pstep-title {
  color: #E8B33C;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}

.process-step p {
  color: #C2C9D4;
  font-size: 14px;
}

.cta-band {
  background-color: #1B1F26;
  border: 1px solid #2C333D;
  border-radius: 4px;
  padding: 30px 34px;
  margin: 30px 0 8px;
  text-align: center;
}

.cta-band h3 {
  color: #F4F6F9;
  font-size: 24px;
  font-weight: 400;
  font-family: Georgia, serif;
  margin-bottom: 12px;
}

.cta-band p {
  color: #C2C9D4;
  margin-bottom: 20px;
}

.btn-gold {
  display: inline-block;
  background-color: #E8B33C;
  color: #131518;
  font-family: Georgia, serif;
  letter-spacing: 0.1em;
  font-size: 14px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 2px;
}

.btn-gold:hover {
  background-color: #F4F6F9;
  color: #131518;
}

/* contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-form-card,
.info-panel {
  background-color: #1B1F26;
  border: 1px solid #2C333D;
  border-radius: 4px;
  padding: 28px 30px 24px;
}

.contact-form-card h2,
.info-panel h2 {
  color: #F4F6F9;
  font-size: 22px;
  font-weight: 400;
  font-family: Georgia, serif;
  margin-bottom: 18px;
  border-bottom: 1px solid #2C333D;
  padding-bottom: 12px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  color: #8E97A3;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  background-color: #131518;
  border: 1px solid #2C333D;
  color: #F4F6F9;
  font-size: 15px;
  font-family: Georgia, serif;
  padding: 11px 12px;
  border-radius: 2px;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #E8B33C;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8E97A3;
}

button.form-send {
  background-color: #E8B33C;
  color: #131518;
  border: none;
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 26px;
  cursor: pointer;
  border-radius: 2px;
}

button.form-send:hover {
  background-color: #F4F6F9;
}

.form-note {
  color: #8E97A3;
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.5;
}

.form-status {
  color: #E8B33C;
  font-size: 14px;
  margin-top: 12px;
  min-height: 18px;
}

.info-row {
  padding: 13px 0;
  border-bottom: 1px solid #2C333D;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  color: #E8B33C;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.info-value {
  color: #C2C9D4;
  font-size: 15px;
}

.info-value a {
  color: #F4F6F9;
}

.info-value a:hover {
  color: #E8B33C;
}

.faq-h2 {
  color: #F4F6F9;
  font-size: 27px;
  font-weight: 400;
  font-family: Georgia, serif;
  margin: 40px 0 4px;
}

.faq-list {
  list-style: none;
  border-top: 1px solid #2C333D;
}

.faq-list li.faq-item {
  border-bottom: 1px solid #2C333D;
}

button.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: #F4F6F9;
  font-size: 16px;
  font-family: Georgia, serif;
  padding: 16px 4px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

button.faq-q .faq-caret {
  color: #E8B33C;
  transition: transform 0.25s ease;
  font-size: 18px;
}

li.faq-item.open button.faq-q .faq-caret {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  color: #C2C9D4;
  font-size: 15px;
  padding: 0 4px 18px;
  line-height: 1.7;
}

li.faq-item.open .faq-a {
  display: block;
}

.title-line {
  color: #E8B33C;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: Georgia, serif;
  margin-bottom: 6px;
}

/* ================ responsive ================================ */
@media (max-width: 1000px) {
  .storm-shell {
    flex-direction: column;
    padding: 30px 24px;
  }

  .storm-rail {
    flex: 1 1 auto;
    width: 100%;
    position: static;
    border-left: none;
    padding: 0;
    margin-bottom: 8px;
  }

  nav.toc {
    border-left: none;
    border-bottom: 1px solid #2C333D;
    padding: 0 0 16px;
  }

  .barometer {
    display: none;
  }

  .storm-column {
    margin-right: 0;
    max-width: 100%;
  }

  h1.mast-title {
    font-size: 40px;
  }
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .shell-inner {
    flex-wrap: wrap;
  }

  .header-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    display: none;
    padding-top: 12px;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav a.nav-link {
    padding: 10px 0;
    width: 100%;
  }

  button.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
  }

  .burger-lines,
  .burger-lines::before,
  .burger-lines::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background-color: #F4F6F9;
    position: relative;
  }

  .burger-lines::before {
    position: absolute;
    top: -7px;
  }

  .burger-lines::after {
    position: absolute;
    top: 7px;
  }

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

@media (max-width: 520px) {
  .storm-shell {
    padding: 24px 18px;
  }

  h1.mast-title {
    font-size: 32px;
  }

  p.mast-lead {
    font-size: 16px;
  }

  .wb-meta {
    width: 92px;
    flex: 0 0 92px;
    font-size: 12px;
  }

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

  .rain-zone {
    padding: 0 18px;
  }

  nav.foot-nav a {
    letter-spacing: 0.1em;
  }
}
