/* ============================================================
   RAGNAROK LONGHOUSE WORK SITE STYLESHEET
   Theme: nordic longhouse worksite
   Palette:
     longhouse-night    #191512  body ground
     rune-bone          #EDE4D3  primary text
     ember-axe          #B65A38  primary accent
     timber-beam        #241E17  raised panels
     hearth-black       #0E0B08  deep recesses
     broad-sword steel  #5D6066  frames and blades
     parchment-rune     #E8DCC2  tags and boards
     fjord-teal         #3E6E71  small shield marks
   ============================================================ */

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

.longhouse {
  margin: 0;
  background-color: #191512;
  color: #EDE4D3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.longhouse a {
  color: #E8DCC2;
  text-decoration: none;
}

.longhouse a:hover {
  color: #B65A38;
}

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

/* ---------- Scroll reveal (safe-first) ---------- */
.reveal {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.longhouse.js .reveal {
  visibility: hidden;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 900ms ease, transform 900ms ease, visibility 900ms ease;
}

.longhouse.js .reveal.revealed {
  visibility: visible;
  opacity: 1;
  transform: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1.2;
}

.btn--ember {
  background-color: #B65A38;
  color: #191512;
}

.btn--ember:hover {
  background-color: #CF6A44;
  color: #191512;
}

.btn--steel {
  background-color: transparent;
  color: #EDE4D3;
  border-color: #5D6066;
}

.btn--steel:hover {
  border-color: #EDE4D3;
  color: #EDE4D3;
}

.btn--parchment {
  background-color: #E8DCC2;
  color: #191512;
}

.btn--parchment:hover {
  background-color: #F2EADA;
  color: #191512;
}

/* ============================================================
   RUNE-BEAM NAV
   ============================================================ */
.runebeam {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #241E17;
  border-bottom: 3px solid #191512;
}

.runebeam__rope {
  height: 0;
}

.runebeam__notch {
  display: none;
}

.runebeam__beam {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.runebeam__beam::after {
  content: "";
  display: block;
  height: 8px;
  width: 100%;
  margin: -4px 0 6px;
  background-image:
    linear-gradient(90deg, transparent 0, transparent 4px, #B65A38 4px, #B65A38 7px, transparent 7px),
    linear-gradient(90deg, transparent 0, transparent 12px, #B65A38 12px, #B65A38 16px, transparent 16px),
    linear-gradient(90deg, transparent 0, transparent 22px, #B65A38 22px, #B65A38 24px, transparent 24px);
  background-size: 28px 8px, 34px 8px, 40px 8px;
  background-position: 0 0, 0 0, 0 0;
  background-repeat: no-repeat;
  opacity: 1;
}

.runebeam__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: #EDE4D3;
}

.runebeam__brand-shield {
  width: 14px;
  height: 16px;
  background-color: #3E6E71;
  border-radius: 8px 8px 2px 2px;
  display: inline-block;
}

.runebeam__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 4px;
}

.runebeam__runetab {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #B65A38;
  margin: 5px 0;
  border-radius: 2px;
}

.runebeam__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}

.runebeam__tag {
  position: relative;
  background-color: #E8DCC2;
  color: #191512;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  transition: background-color 200ms ease, color 200ms ease;
}

.runebeam__tag::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 10px;
  background-color: #5D6066;
}

.runebeam__tag:hover {
  background-color: #B65A38;
  color: #191512;
}

.runebeam__tag--current {
  background-color: #B65A38;
  color: #191512;
}

.runebeam__tag--flag {
  background-color: #B65A38;
  color: #191512;
  outline: 2px solid #B65A38;
  outline-offset: 2px;
}

.runebeam__tag--flag:hover {
  background-color: #EDE4D3;
  color: #191512;
}

@media (max-width: 820px) {
  .runebeam__toggle {
    display: block;
  }
  .runebeam__tags {
    display: none;
    flex: 1 1 100%;
    flex-direction: column;
    gap: 6px;
    padding: 10px 0 14px;
    align-items: stretch;
  }
  .runebeam__tags.is-open {
    display: flex;
  }
  .runebeam__tag {
    text-align: center;
    border-radius: 4px;
    padding: 12px;
  }
  .runebeam__tag::after {
    display: none;
  }
}

/* ============================================================
   HEARTH-HALL HERO
   ============================================================ */
.hearthhall {
  position: relative;
  background-color: #241E17;
  overflow: hidden;
}

.hearthhall__truss {
  position: relative;
  height: 120px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.hearthhall__chord {
  position: absolute;
  top: 0;
  width: 60%;
  height: 18px;
  background-color: #191512;
}

.hearthhall__chord--left {
  left: -4%;
  transform: rotate(8deg);
  transform-origin: right center;
}

.hearthhall__chord--right {
  right: -4%;
  transform: rotate(-8deg);
  transform-origin: left center;
}

.hearthhall__ridge {
  position: absolute;
  top: -6px;
  left: 46%;
  width: 8%;
  height: 34px;
  background-color: #191512;
  box-shadow: 0 0 0 2px #5D6066;
}

.hearthhall__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px 90px;
  display: grid;
  grid-template-columns: 9fr 8fr;
  gap: 24px;
  align-items: start;
}

.hearthhall__content {
  z-index: 2;
}

.hearthhall__eyebrow {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #B65A38;
  margin: 0 0 18px;
  position: relative;
  padding-left: 20px;
}

.hearthhall__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 3px;
  background-color: #3E6E71;
}

.hearthhall__title {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 3.1rem;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #EDE4D3;
  margin: 0 0 20px;
  font-weight: 700;
}

.hearthhall__lead {
  color: #EDE4D3;
  font-size: 1.12rem;
  max-width: 42ch;
  margin: 0 0 28px;
}

.hearthhall__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hearthhall__hearth {
  position: relative;
  align-self: center;
  justify-self: center;
  z-index: 1;
  width: 220px;
  height: 400px;
}

.hearthhall__glow {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 190px;
  height: 380px;
  background-color: #B65A38;
  border-radius: 160px 160px 0 0;
  opacity: 1;
}

.hearthhall__ring {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.hearthhall__ring--a {
  bottom: 20px;
  width: 90px;
  height: 90px;
  background-color: #191512;
}

.hearthhall__ring--b {
  bottom: 60px;
  width: 140px;
  height: 120px;
  background-color: #241E17;
  border: 10px solid #5D6066;
}

.hearthhall__ring--c {
  bottom: 10px;
  width: 60px;
  height: 60px;
  background-color: #FFD9A0;
}

.hearthhall__shieldwall {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  position: absolute;
  right: 24px;
  top: 30px;
}

.hearthhall__shield {
  width: 70px;
  height: 84px;
  border-radius: 50% 50% 42% 42%;
  display: inline-block;
  border: 3px solid #191512;
}

.hearthhall__shield--teal {
  background-color: #3E6E71;
}

.hearthhall__shield--timber {
  background-color: #8A6B45;
  color: #191512;
  position: relative;
}

.hearthhall__shield--timber::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 22px;
  height: 44px;
  background-color: #191512;
  border-radius: 3px;
}

.hearthhall__shield--steel {
  background-color: #5D6066;
}

.hearthhall__bucket {
  position: absolute;
  bottom: 110px;
  right: 40px;
  width: 70px;
  height: 90px;
}

.hearthhall__roll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  border-radius: 4px;
  border: 1px solid #5D6066;
}

.hearthhall__roll--a {
  top: -8px;
  height: 96px;
  background-color: #E8DCC2;
  transform: translateX(-50%) rotate(-8deg);
}

.hearthhall__roll--b {
  top: -8px;
  left: 30%;
  height: 96px;
  background-color: #D9CBA8;
  transform: translateX(-50%) rotate(6deg);
}

.hearthhall__roll--c {
  top: -4px;
  left: 68%;
  height: 92px;
  background-color: #CFC39A;
  transform: translateX(-50%) rotate(0deg);
}

.hearthhall__bucket::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 20px;
  background-color: #5D6066;
  border-radius: 2px 2px 10px 10px;
}

.hearthhall__kick {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px;
  background-color: #0E0B08;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.hearthhall__stat {
  text-align: center;
}

.hearthhall__stat-num {
  display: block;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  color: #B65A38;
  line-height: 1.1;
}

.hearthhall__stat-lbl {
  display: block;
  font-family: "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #EDE4D3;
}

.hearthhall__sep {
  width: 2px;
  height: 42px;
  background-color: #B65A38;
}

@media (max-width: 860px) {
  .hearthhall__inner {
    grid-template-columns: 1fr;
  }
  .hearthhall__title {
    font-size: 2.2rem;
  }
  .hearthhall__hearth,
  .hearthhall__shieldwall,
  .hearthhall__bucket {
    display: none;
  }
  .hearthhall__kick {
    justify-content: center;
  }
}

/* ============================================================
   TRUSS-BAY ROWS
   ============================================================ */
.trussbay {
  background-color: #241E17;
  padding: 70px 0 30px;
}

.trussbay__title-area {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 30px;
}

.trussbay__heading {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 2.4rem;
  color: #EDE4D3;
  margin: 0 0 12px;
  font-weight: 700;
}

.trussbay__sub {
  color: #EDE4D3;
  max-width: 60ch;
  margin: 0;
}

.trussbay__lead {
  max-width: 1180px;
  margin: 0 auto 40px;
  padding: 0 40px;
  color: #E8DCC2;
  font-size: 1.2rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  max-width: 70ch;
  border-left: 4px solid #B65A38;
}

.trussbay__bay {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 20px;
  padding: 30px 24px;
  background-color: #241E17;
  border-top: 2px solid #5D6066;
  border-bottom: 2px solid #191512;
  transition: background-color 200ms ease;
}

.trussbay__bay:hover {
  background-color: #2A2319;
}

.trussbay__bay--inset {
  margin-left: auto;
  max-width: 1136px;
  transform: translateX(44px);
}

.trussbay__post {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  background-color: #0E0B08;
}

.trussbay__post--l {
  left: 0;
}

.trussbay__post--r {
  right: 0;
}

.trussbay__brace {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-100%);
  width: 32px;
  height: 6px;
  background-color: #B65A38;
  opacity: 1;
}

.trussbay__brace::after {
  content: "";
  position: absolute;
  left: 28px;
  top: -14px;
  width: 6px;
  height: 34px;
  background-color: #B65A38;
  transform: rotate(30deg);
}

.trussbay__baytag {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  color: #191512;
  background-color: #E8DCC2;
  display: inline-block;
  padding: 6px 18px;
  border-radius: 0 0 8px 8px;
  margin: 0 0 18px;
}

.trussbay__mark {
  position: relative;
  top: -6px;
  margin-left: 12px;
  display: inline-block;
  width: 14px;
  height: 16px;
  background-color: #5D6066;
  border-radius: 8px 8px 2px 2px;
}

.trussbay__mark--teal {
  background-color: #3E6E71;
}

.trussbay__body {
  position: relative;
  padding-left: 14px;
  border-left: 4px solid #0E0B08;
}

.trussbay__name {
  font-family: "Arial Narrow", Arial, sans-serif;
  color: #B65A38;
  font-size: 1.5rem;
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trussbay__body p {
  color: #EDE4D3;
  margin: 0 0 16px;
  max-width: 78ch;
}

.trussbay__more {
  display: inline-block;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: #E8DCC2;
  border-bottom: 2px solid #B65A38;
  padding-bottom: 2px;
}

.trussbay__more:hover {
  color: #B65A38;
  border-color: #B65A38;
}

.trussbay__statement {
  max-width: 1180px;
  margin: 40px auto 30px;
  padding: 50px 24px;
  background-color: #2A2319;
  border-top: 3px solid #5D6066;
  text-align: center;
}

.trussbay__statement-num {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: 7rem;
  line-height: 0.9;
  color: #B65A38;
  display: inline-block;
}

.trussbay__statement-suffix {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: #5D6066;
  margin-left: 6px;
  vertical-align: top;
}

.trussbay__statement-text {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #EDE4D3;
  margin: 10px auto 0;
  max-width: 46ch;
}

@media (max-width: 820px) {
  .trussbay__bay--inset {
    transform: none;
  }
  .trussbay__statement-num {
    font-size: 5rem;
  }
}

/* ============================================================
   LIFT-PLAN FLOW
   ============================================================ */
.liftplan {
  background-color: #0E0B08;
  padding: 70px 0 70px;
}

.liftplan__title {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 20px;
}

.liftplan__heading {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 2.4rem;
  color: #EDE4D3;
  margin: 0 0 12px;
  font-weight: 700;
}

.liftplan__sub {
  color: #EDE4D3;
  max-width: 62ch;
  margin: 0;
}

.liftplan__rail {
  position: relative;
  max-width: 1180px;
  margin: 30px auto 10px;
}

.liftplan__rope {
  display: block;
  height: 4px;
  background-color: #5D6066;
}

.liftplan__stations {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.liftplan__station {
  text-align: center;
  position: relative;
}

.liftplan__hook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #5D6066;
  color: #191512;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 14px;
  position: relative;
}

.liftplan__hook::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #B65A38;
}

.liftplan__hook--land {
  background-color: #B65A38;
}

.liftplan__name {
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #B65A38;
  font-size: 1.05rem;
  margin: 0 0 10px;
}

.liftplan__capt {
  color: #EDE4D3;
  font-size: 0.95rem;
  margin: 0;
  min-height: 4.8em;
}

.liftplan__target {
  max-width: 1180px;
  margin: 40px auto 0;
  padding: 24px;
  text-align: center;
}

.liftplan__target-dot {
  display: inline-block;
  width: 46px;
  height: 22px;
  background-color: #B65A38;
  border: 3px solid #5D6066;
  border-radius: 6px;
  vertical-align: middle;
}

.liftplan__target-text {
  display: inline-block;
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #EDE4D3;
  font-weight: 700;
  margin-left: 14px;
}

@media (max-width: 860px) {
  .liftplan__stations {
    grid-template-columns: 1fr;
  }
  .liftplan__rope {
    display: none;
  }
  .liftplan__capt {
    min-height: 0;
  }
}

/* ============================================================
   WAR COUNSEL
   ============================================================ */
.warcouncil {
  background-color: #B65A38;
  color: #191512;
  padding: 60px 24px;
}

.warcouncil__stamp {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #191512;
  border: 3px solid #191512;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 50%;
  margin-bottom: 24px;
  transform: rotate(-4deg);
}

.warcouncil__line {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.warcouncil__title {
  font-family: "Arial Narrow", Arial, sans-serif;
  color: #191512;
  font-size: 2.2rem;
  margin: 0 0 16px;
  font-weight: 700;
}

.warcouncil__body {
  color: #191512;
  font-size: 1.08rem;
  max-width: 60ch;
  margin: 0 auto 24px;
}

.warcouncil .btn--parchment {
  color: #191512;
}

/* ============================================================
   SHIELD-WALL FOOTER
   ============================================================ */
.shieldwall {
  background-color: #0E0B08;
  position: relative;
  z-index: 1;
}

.shieldwall__band {
  background-color: #0E0B08;
  padding: 34px 24px 10px;
  text-align: center;
}

.shieldwall__rims {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}

.shieldwall__rim {
  display: inline-block;
  width: 52px;
  height: 26px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border: 2px solid #191512;
}

.shieldwall__rim--timber {
  background-color: #8A6B45;
}

.shieldwall__rim--teal {
  background-color: #3E6E71;
}

.shieldwall__rim--steel {
  background-color: #5D6066;
}

.shieldwall__motto {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #B65A38;
  font-size: 1rem;
  margin: 0;
}

.shieldwall__columns {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.shieldwall__col {
  background-color: #241E17;
  padding: 22px;
}

.shieldwall__colhead {
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #E8DCC2;
  font-size: 1.1rem;
  margin: 0 0 14px;
  border-bottom: 2px solid #B65A38;
  padding-bottom: 8px;
}

.shieldwall__link {
  display: block;
  color: #E8DCC2;
  padding: 5px 0;
  font-size: 0.98rem;
}

.shieldwall__link:hover {
  color: #B65A38;
}

.shieldwall__plate {
  background-color: #5D6066;
  color: #191512;
}

.shieldwall__plate-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  text-align: center;
}

.shieldwall__org {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  color: #191512;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
}

.shieldwall__addr,
.shieldwall__contact {
  color: #191512;
  margin: 0 0 6px;
}

.shieldwall__email,
.shieldwall__phone {
  color: #191512;
  font-weight: 700;
}

.shieldwall__email:hover,
.shieldwall__phone:hover {
  color: #241E17;
  text-decoration: underline;
}

.shieldwall__contact .shieldwall__phone {
  margin-left: 18px;
}

.shieldwall__copy {
  color: #191512;
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.shieldwall__wordmark {
  color: #241E17;
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  margin: 6px 0 0;
}

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

/* ============================================================
   SUBPAGE HERO (secondary pages)
   ============================================================ */
.pagehero {
  background-color: #241E17;
  position: relative;
  overflow: hidden;
  padding-top: 14px;
}

.pagehero__truss {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
}

.pagehero__chord {
  position: absolute;
  top: 10px;
  width: 45%;
  height: 16px;
  background-color: #0E0B08;
}

.pagehero__chord--left {
  left: -3%;
  transform: rotate(9deg);
  transform-origin: right center;
}

.pagehero__chord--right {
  right: -3%;
  transform: rotate(-9deg);
  transform-origin: left center;
}

.pagehero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 24px 70px;
}

.pagehero__eyebrow {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #B65A38;
  margin: 0 0 16px;
  padding-left: 20px;
  position: relative;
}

.pagehero__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 3px;
  background-color: #3E6E71;
}

.pagehero__title {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 3rem;
  line-height: 1.05;
  color: #EDE4D3;
  margin: 0 0 20px;
  font-weight: 700;
}

.pagehero__lead {
  color: #EDE4D3;
  font-size: 1.15rem;
  max-width: 56ch;
  margin: 0;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc {
  background-color: #241E17;
  padding: 60px 24px 30px;
}

.svc__block {
  position: relative;
  max-width: 900px;
  margin: 0 auto 40px;
  background-color: #241E17;
  padding: 34px 40px 34px 70px;
  border-left: 6px solid #5D6066;
  box-shadow: 8px 8px 0 #0E0B08;
}

.svc__block--inset {
  transform: translateX(-30px);
  border-left-color: #B65A38;
}

.svc__marker {
  position: absolute;
  left: -34px;
  top: 34px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #B65A38;
  color: #191512;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.svc__marker--teal {
  background-color: #5D6066;
}

.svc__title {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #EDE4D3;
  margin: 0 0 14px;
}

.svc__body p {
  color: #EDE4D3;
}

/* Process */
.svc__process {
  max-width: 1180px;
  margin: 70px auto 40px;
  padding: 0 0 10px;
  border-top: 3px solid #5D6066;
}

.svc__process-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
}

.svc__stick {
  width: 5px;
  height: 40px;
  background-color: #B65A38;
  display: inline-block;
}

.svc__process-title {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 2.4rem;
  color: #EDE4D3;
  margin: 0;
  font-weight: 700;
}

.svc__steps {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.svc__step {
  background-color: #0E0B08;
  padding: 22px;
  border-top: 4px solid #B65A38;
}

.svc__stepnum {
  display: inline-block;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  color: #B65A38;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.svc__stepname {
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #EDE4D3;
  font-size: 1.1rem;
  margin: 0 0 10px;
}

.svc__stext {
  color: #EDE4D3;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .svc__block {
    padding: 26px 20px 26px 24px;
  }
  .svc__block--inset {
    transform: none;
  }
  .svc__marker {
    position: static;
    display: inline-flex;
    margin-bottom: 14px;
  }
  .svc__steps {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contactwrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 30px;
  background-color: #241E17;
}

.contactwrap__formside {
  padding-top: 46px;
}

.contactwrap__info {
  padding-top: 46px;
}

.contactwrap__formcard,
.contactwrap__card {
  background-color: #2A2319;
  border-top: 6px solid #B65A38;
  padding: 30px;
}

.contactwrap__h2 {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.9rem;
  color: #EDE4D3;
  margin: 0 0 8px;
  font-weight: 700;
}

.contactwrap__note {
  color: #E8DCC2;
  font-size: 0.95rem;
  margin: 0 0 20px;
}

.contactwrap__card {
  margin-bottom: 24px;
}

.contactwrap__h3 {
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E8DCC2;
  font-size: 1rem;
  margin: 0 0 16px;
  border-bottom: 2px solid #B65A38;
  padding-bottom: 8px;
}

.contactwrap__line {
  color: #EDE4D3;
  margin: 0 0 10px;
}

.contactwrap__line a {
  color: #EDE4D3;
  font-weight: 700;
}

.contactwrap__line a:hover {
  color: #B65A38;
}

.contactwrap__hours {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contactwrap__hour {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #5D6066;
  color: #EDE4D3;
}

.contactwrap__day {
  font-family: "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.contactwrap__time {
  color: #E8DCC2;
}

/* Form */
.cform__row {
  margin-bottom: 18px;
}

.cform__label {
  display: block;
  font-family: "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: #B65A38;
  margin-bottom: 6px;
}

.cform__input {
  width: 100%;
  padding: 12px 14px;
  background-color: #241E17;
  border: 2px solid #5D6066;
  color: #EDE4D3;
  font-size: 1rem;
  font-family: Georgia, serif;
}

.cform__input:focus {
  outline: none;
  border-color: #B65A38;
}

.cform__input--area {
  resize: vertical;
  min-height: 140px;
}

.cform label {
  color: #B65A38;
}

.cform__submit {
  width: 100%;
}

.cform__status {
  font-family: "Arial Narrow", Arial, sans-serif;
  color: #EDE4D3;
  margin: 12px 0 0;
  text-align: center;
}

/* FAQ */
.faqsect {
  background-color: #191512;
  padding: 60px 24px 70px;
}

.faqsect__title {
  max-width: 900px;
  margin: 0 auto 30px;
}

.faqsect__heading {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 2.2rem;
  color: #EDE4D3;
  font-weight: 700;
  margin: 0;
}

.faqsect__item {
  max-width: 900px;
  margin: 0 auto 14px;
  background-color: #241E17;
  border-left: 4px solid #B65A38;
}

.faqsect__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 22px;
  color: #EDE4D3;
  font-family: Georgia, serif;
  font-size: 1.12rem;
  cursor: pointer;
  font-weight: 700;
}

.faqsect__q::after {
  content: "+";
  float: right;
  color: #B65A38;
  font-size: 1.4rem;
}

.faqsect__a {
  display: none;
  padding: 0 22px 20px;
}

.faqsect__item.is-open .faqsect__a {
  display: block;
}

.faqsect__item.is-open .faqsect__q::after {
  content: "−";
}

.faqsect__p {
  color: #EDE4D3;
  margin: 0;
}

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

/* Visually accessible section headings areas take no stray bottom padding */
.no-pb {
  padding-bottom: 0;
}
