/* Malden Chimney & Masonry -- the fellstone sheet.
   Granite blue-gray and ember amber on quarry cream. */

:root
{
  --ma5-brick: #9E4A2A;
  --ma5-brick-dark: #6F3018;
  --ma5-ember: #D99E33;
  --ma5-ember-glow: #F2CB74;
  --ma5-coast: #5E6A72;
  --ma5-charcoal: #1A1A17;
  --ma5-charcoal-2: #24241F;
  --ma5-charcoal-3: #30302A;
  --ma5-cream: #F4F2EC;
  --ma5-cream-2: #E9E6DB;
  --ma5-ink: #1B1B18;
  --ma5-muted: #6A6960;
  --ma5-line: rgba(26,26,23,.12);
  --ma5-gold: #C89838;
  --ma5-green-ok: #31805B;
  --ma5-radius: 16px;
  --ma5-radius-lg: 26px;
  --ma5-shadow-sm: 0 4px 14px rgba(26,26,23,.08);
  --ma5-shadow: 0 14px 40px rgba(26,26,23,.14);
  --ma5-shadow-lg: 0 30px 70px rgba(26,26,23,.26);
  --ma5-wrap: 1200px;
  --ma5-font: 'Hind',system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  --ma5-display: 'Antonio','Arial Narrow',var(--ma5-font);
  --ma5-header-h: 76px;
}

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

html
{
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body
{
  margin: 0;
  font-family: var(--ma5-font);
  color: var(--ma5-ink);
  background: var(--ma5-cream);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a
{
  color: var(--ma5-brick);
  text-decoration: none;
}

a:hover
{
  color: var(--ma5-brick-dark);
}

button
{
  font-family: inherit;
}

h1,h2,h3,h4
{
  font-family: var(--ma5-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: .4px;
  text-transform: uppercase;
}

h1
{
  font-size: clamp(2.15rem,5.4vw,4.15rem);
}

h2
{
  font-size: clamp(1.85rem,3.9vw,3rem);
}

h3
{
  font-size: clamp(1.15rem,1.7vw,1.45rem);
}

p
{
  margin: 0 0 1.1em;
}

.fellspan5
{
  width: min(var(--ma5-wrap),92%);
  margin-inline: auto;
}

.midtrail5
{
  text-align: center;
}

.stillcrag5
{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.shortcut-link5
{
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ma5-brick);
  color: #fff;
  padding: 12px 20px;
  z-index: 9999;
}

.shortcut-link5:focus
{
  left: 10px;
  top: 10px;
}

:focus-visible
{
  outline: 3px solid var(--ma5-ember);
  outline-offset: 3px;
}

#bg-fx-ma
{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#emberCanvas-ma
{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .55;
}

.foglift5
{
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .34;
  will-change: transform;
}

.foglift5-a
{
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%,var(--ma5-ember),transparent 68%);
  top: -140px;
  left: -120px;
  animation: float1 26s ease-in-out infinite;
}

.foglift5-b
{
  width: 640px;
  height: 640px;
  background: radial-gradient(circle at 60% 40%,var(--ma5-brick),transparent 66%);
  top: 38%;
  right: -220px;
  animation: float2 32s ease-in-out infinite;
}

.foglift5-c
{
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 50% 50%,var(--ma5-gold),transparent 65%);
  bottom: -120px;
  left: 22%;
  animation: float3 29s ease-in-out infinite;
}

@keyframes float1
{
  0%,100%
  {
    transform: translate3d(0,0,0) scale(1);
  }
  50%
  {
    transform: translate3d(90px,120px,0) scale(1.16);
  }
}

@keyframes float2
{
  0%,100%
  {
    transform: translate3d(0,0,0) scale(1.05);
  }
  50%
  {
    transform: translate3d(-120px,-90px,0) scale(.9);
  }
}

@keyframes float3
{
  0%,100%
  {
    transform: translate3d(0,0,0) scale(.95);
  }
  50%
  {
    transform: translate3d(70px,-110px,0) scale(1.2);
  }
}

main,header,footer,.ridgeline5
{
  position: relative;
  z-index: 1;
}

.handhold5
{
  --ma5-bg: var(--ma5-brick);
  --ma5-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: var(--ma5-bg);
  color: var(--ma5-fg);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 16px 30px;
  border-radius: 60px;
  border: 0;
  cursor: pointer;
  letter-spacing: .3px;
  box-shadow: 0 10px 26px rgba(178,58,33,.32);
  transition: transform .22s cubic-bezier(.2,.8,.3,1),box-shadow .22s,background .22s;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.handhold5:hover
{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(178,58,33,.42);
  color: #fff;
}

.handhold5:active
{
  transform: translateY(-1px);
}

.handhold5::after
{
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg,transparent,rgba(255,255,255,.42),transparent);
  transform: skewX(-18deg);
  animation: sheen 4.5s ease-in-out infinite;
}

@keyframes sheen
{
  0%,72%
  {
    left: -60%;
  }
  88%,100%
  {
    left: 135%;
  }
}

.handhold5-kindled
{
  --ma5-bg: linear-gradient(135deg,var(--ma5-ember),var(--ma5-brick));
  box-shadow: 0 10px 26px rgba(240,128,60,.4);
}

.handhold5-shaded
{
  --ma5-bg: transparent;
  --ma5-fg: #fff;
  border: 2px solid rgba(255,255,255,.6);
  box-shadow: none;
}

.handhold5-shaded:hover
{
  background: rgba(255,255,255,.12);
  box-shadow: none;
}

.handhold5-dusken
{
  --ma5-bg: var(--ma5-charcoal);
  box-shadow: 0 10px 26px rgba(26,26,23,.3);
}

.handhold5-broad
{
  padding: 19px 38px;
  font-size: 1.12rem;
}

.handhold5-solid
{
  display: flex;
  width: 100%;
}

.ridgeline5
{
  background: var(--ma5-charcoal);
  color: #D8D5C8;
  font-size: .86rem;
  letter-spacing: .3px;
}

.ridgeline5 .fellspan5
{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
}

.ridgeline5 b
{
  color: #fff;
}

.ridgeline5 .rl5-bead
{
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.emberlive-dot
{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3DC673;
  box-shadow: 0 0 0 0 rgba(73,199,126,.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot
{
  70%
  {
    box-shadow: 0 0 0 9px rgba(73,199,126,0);
  }
  100%
  {
    box-shadow: 0 0 0 0 rgba(73,199,126,0);
  }
}

.cragtop5
{
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(246,240,231,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ma5-line);
  transition: box-shadow .3s,background .3s;
}

.cragtop5.fellworn
{
  box-shadow: 0 8px 30px rgba(26,26,23,.13);
  background: rgba(246,240,231,.96);
}

.cragtop5 .fellspan5
{
  width: min(1360px,94%);
}

.switchback5
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--ma5-header-h);
}

.keystone5
{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ma5-ink);
  flex: 0 0 auto;
}

.keystone5:hover
{
  color: var(--ma5-ink);
}

.keystone5-mark
{
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 8px rgba(178,58,33,.3));
}

.keystone5-slip
{
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.keystone5-slip strong
{
  font-family: var(--ma5-display);
  font-size: 1.06rem;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.keystone5-slip span
{
  font-size: .7rem;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--ma5-brick);
  font-weight: 600;
}

.traverse5
{
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.traverse5 a
{
  color: var(--ma5-ink);
  font-weight: 600;
  font-size: .92rem;
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
}

.traverse5 a::after
{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--ma5-brick);
  transition: width .28s;
}

.traverse5 a:hover::after,.traverse5 a.afoot::after
{
  width: 100%;
}

.switchback5-drive
{
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.switchback5-digits
{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: right;
}

.switchback5-digits small
{
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--ma5-muted);
}

.switchback5-digits b
{
  font-family: var(--ma5-display);
  font-size: 1.22rem;
  color: var(--ma5-brick);
}

.packflap5
{
  display: none;
  width: 48px;
  height: 44px;
  border: 1px solid var(--ma5-line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.packflap5 span
{
  position: absolute;
  left: 13px;
  width: 22px;
  height: 2px;
  background: var(--ma5-ink);
  transition: .3s;
}

.packflap5 span:nth-child(1)
{
  top: 15px;
}

.packflap5 span:nth-child(2)
{
  top: 21px;
}

.packflap5 span:nth-child(3)
{
  top: 27px;
}

.packflap5[aria-expanded="true"] span:nth-child(1)
{
  top: 21px;
  transform: rotate(45deg);
}

.packflap5[aria-expanded="true"] span:nth-child(2)
{
  opacity: 0;
}

.packflap5[aria-expanded="true"] span:nth-child(3)
{
  top: 21px;
  transform: rotate(-45deg);
}

.ridgefront5
{
  position: relative;
  color: #fff;
  padding: clamp(56px,8vw,104px) 0 clamp(70px,9vw,120px);
  overflow: hidden;
  isolation: isolate;
}

.ridgefront5-mist
{
  position: absolute;
  inset: 0;
  z-index: -2;
}

.ridgefront5-mist img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: kenburns 24s ease-in-out infinite alternate;
}

@keyframes kenburns
{
  to
  {
    transform: scale(1.17) translate3d(-1.5%,-1.5%,0);
  }
}

.ridgefront5::before
{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg,rgba(18,14,12,.95) 0%,rgba(26,18,14,.86) 38%,rgba(181,57,31,.6) 74%,rgba(242,145,63,.42) 100%);
}

.ridgefront5-terraces
{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 52px;
  align-items: center;
}

.summittag5
{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.26);
  color: #fff;
  padding: 8px 17px;
  border-radius: 60px;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.ridgefront5 h1
{
  color: #fff;
  text-shadow: 0 6px 30px rgba(0,0,0,.4);
}

.ridgefront5 h1 .amberband5
{
  color: var(--ma5-ember-glow);
  display: inline-block;
}

.ridgefront5-footnote
{
  font-size: clamp(1.02rem,1.5vw,1.2rem);
  color: #E6E3D8;
  max-width: 610px;
}

.ridgefront5-holds
{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 26px;
}

.ridgefront5-cairns
{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .92rem;
  color: #E2DFD4;
}

.ridgefront5-cairns li
{
  display: flex;
  align-items: center;
  gap: 8px;
}

.cairndot5
{
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(73,199,126,.2);
  display: grid;
  place-items: center;
}

.cairndot5 svg
{
  width: 12px;
  height: 12px;
  stroke: #5FE291;
  fill: none;
  stroke-width: 3;
}

.climbcard5
{
  background: linear-gradient(160deg,rgba(255,255,255,.98),rgba(246,240,231,.94));
  color: var(--ma5-ink);
  border-radius: var(--ma5-radius-lg);
  padding: 30px 28px;
  box-shadow: var(--ma5-shadow-lg);
  border: 1px solid rgba(255,255,255,.6);
  position: relative;
  animation: floaty 6.5s ease-in-out infinite;
}

@keyframes floaty
{
  0%,100%
  {
    transform: translateY(0);
  }
  50%
  {
    transform: translateY(-13px);
  }
}

.climbcard5-pennant
{
  position: absolute;
  top: -18px;
  right: -10px;
  background: var(--ma5-brick);
  color: #fff;
  font-family: var(--ma5-display);
  font-size: .82rem;
  letter-spacing: 1.4px;
  padding: 9px 16px;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(178,58,33,.4);
  text-transform: uppercase;
  animation: wobble 5s ease-in-out infinite;
}

@keyframes wobble
{
  0%,100%
  {
    transform: rotate(-3deg);
  }
  50%
  {
    transform: rotate(3deg);
  }
}

.climbcard5-total
{
  font-family: var(--ma5-display);
  font-size: clamp(3.4rem,7vw,4.6rem);
  line-height: 1;
  color: var(--ma5-brick);
  display: flex;
  align-items: flex-start;
  gap: 4px;
  justify-content: center;
  margin: 6px 0 2px;
}

.climbcard5-total sup
{
  font-size: .42em;
  margin-top: .32em;
}

.climbcard5 h2
{
  font-size: 1.32rem;
  margin-bottom: 4px;
  text-align: center;
}

.climbcard5 .climbcard5-murmur
{
  text-align: center;
  color: var(--ma5-muted);
  font-size: .9rem;
  margin-bottom: 16px;
}

.climbcard5-stages
{
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 9px;
  font-size: .95rem;
}

.climbcard5-stages li
{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.climbcard5-stages svg
{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  stroke: var(--ma5-brick);
  fill: none;
  stroke-width: 3;
}

.climbcard5-footline
{
  font-size: .76rem;
  color: var(--ma5-muted);
  text-align: center;
  margin: 12px 0 0;
  line-height: 1.5;
}

.scree-line5
{
  background: var(--ma5-charcoal-2);
  color: #C6C3B8;
  overflow: hidden;
  padding: 13px 0;
  border-block: 1px solid rgba(255,255,255,.07);
}

.scree-line5-slide
{
  display: flex;
  gap: 52px;
  white-space: nowrap;
  width: max-content;
  animation: scrollX 34s linear infinite;
  font-family: var(--ma5-display);
  letter-spacing: 2px;
  font-size: .94rem;
  text-transform: uppercase;
}

.scree-line5-slide span
{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.scree-line5-slide b
{
  color: var(--ma5-ember);
}

@keyframes scrollX
{
  to
  {
    transform: translateX(-50%);
  }
}

section
{
  padding: clamp(56px,7vw,100px) 0;
  position: relative;
}

.trailhead5
{
  max-width: 760px;
  margin: 0 auto 52px;
}

.trailhead5.westtrail5
{
  margin-inline: 0;
}

.blaze5
{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ma5-brick);
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 14px;
}

.blaze5::before
{
  content: "";
  width: 28px;
  height: 2px;
  background: var(--ma5-brick);
}

.approach5
{
  font-size: 1.06rem;
  color: var(--ma5-muted);
}

.tone-quarrycream
{
  background: linear-gradient(180deg,rgba(237,227,213,.75),rgba(246,240,231,.4));
}

.tone-nightfell
{
  background: var(--ma5-charcoal);
  color: #D9D6CB;
}

.tone-nightfell h2,.tone-nightfell h3
{
  color: #fff;
}

.tone-nightfell .approach5
{
  color: #B2AFA4;
}

.tone-nightfell .blaze5
{
  color: var(--ma5-ember-glow);
}

.tone-nightfell .blaze5::before
{
  background: var(--ma5-ember);
}

.cragcount
{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
}

.cragcount-block
{
  background: #fff;
  border-radius: var(--ma5-radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--ma5-shadow-sm);
  border: 1px solid var(--ma5-line);
  transition: transform .3s,box-shadow .3s;
}

.cragcount-block:hover
{
  transform: translateY(-7px);
  box-shadow: var(--ma5-shadow);
}

.cragcount-block b
{
  display: block;
  font-family: var(--ma5-display);
  font-size: clamp(2rem,3.6vw,2.9rem);
  color: var(--ma5-brick);
  line-height: 1;
}

.cragcount-block span
{
  font-size: .87rem;
  color: var(--ma5-muted);
  letter-spacing: .6px;
}

.fellwork5-range
{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(295px,1fr));
  gap: 26px;
}

.fellwork5
{
  background: #fff;
  border-radius: var(--ma5-radius-lg);
  overflow: hidden;
  box-shadow: var(--ma5-shadow-sm);
  border: 1px solid var(--ma5-line);
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.8,.3,1),box-shadow .35s;
}

.fellwork5:hover
{
  transform: translateY(-10px);
  box-shadow: var(--ma5-shadow-lg);
}

.fellwork5-face
{
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ma5-charcoal-3);
}

.fellwork5-face img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.3,1);
}

.fellwork5:hover .fellwork5-face img
{
  transform: scale(1.09);
}

.fellwork5-face::after
{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 42%,rgba(20,16,14,.72));
}

.fellwork5-blazon
{
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--ma5-brick);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(178,58,33,.45);
}

.fellwork5-blazon svg
{
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fellwork5-notes
{
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fellwork5-notes h3
{
  margin-bottom: 8px;
}

.fellwork5-notes p
{
  font-size: .95rem;
  color: var(--ma5-muted);
  margin-bottom: 16px;
}

.fellwork5-notes ul
{
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  font-size: .9rem;
  display: grid;
  gap: 6px;
}

.fellwork5-notes li
{
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #474640;
}

.fellwork5-notes li::before
{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ma5-ember);
  flex: 0 0 auto;
  margin-top: 8px;
}

.fellwork5-lead
{
  margin-top: auto;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
}

.fellwork5-lead svg
{
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  transition: transform .3s;
}

.fellwork5:hover .fellwork5-lead svg
{
  transform: translateX(5px);
}

.marker5-range
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.marker5-list
{
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.marker5-list li
{
  display: flex;
  gap: 15px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 16px 18px;
  align-items: flex-start;
  transition: transform .3s,border-color .3s,background .3s;
}

.marker5-list li:hover
{
  transform: translateX(7px);
  border-color: rgba(240,128,60,.55);
  background: rgba(240,128,60,.08);
}

.marker5-list .mk5
{
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: rgba(240,128,60,.16);
  display: grid;
  place-items: center;
}

.marker5-list .mk5 svg
{
  width: 20px;
  height: 20px;
  stroke: var(--ma5-ember-glow);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.marker5-list b
{
  display: block;
  color: #fff;
  font-family: var(--ma5-display);
  letter-spacing: .5px;
  font-size: 1.02rem;
  text-transform: uppercase;
}

.marker5-list span
{
  font-size: .92rem;
  color: #AEABA0;
}

.marker5-face
{
  position: relative;
  border-radius: var(--ma5-radius-lg);
  overflow: hidden;
  box-shadow: var(--ma5-shadow-lg);
}

.marker5-face img
{
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.marker5-slip
{
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: rgba(26,26,23,.82);
  backdrop-filter: blur(9px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 16px 18px;
  color: #fff;
}

.marker5-slip b
{
  font-family: var(--ma5-display);
  display: block;
  color: var(--ma5-ember-glow);
  letter-spacing: 1px;
}

.marker5-slip span
{
  font-size: .88rem;
  color: #C2BFB4;
}

.fourcairns5
{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}

.fourcairns5-cairn
{
  background: #fff;
  border-radius: var(--ma5-radius);
  padding: 34px 24px 26px;
  box-shadow: var(--ma5-shadow-sm);
  border: 1px solid var(--ma5-line);
  position: relative;
  transition: transform .35s,box-shadow .35s;
}

.fourcairns5-cairn:hover
{
  transform: translateY(-8px);
  box-shadow: var(--ma5-shadow);
}

.fourcairns5-stone
{
  position: absolute;
  top: -20px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(140deg,var(--ma5-ember),var(--ma5-brick));
  color: #fff;
  font-family: var(--ma5-display);
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(178,58,33,.35);
}

.fourcairns5-cairn h3
{
  font-size: 1.12rem;
  margin-top: 8px;
}

.fourcairns5-cairn p
{
  font-size: .93rem;
  color: var(--ma5-muted);
  margin: 0;
}

.routelog5
{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.routelog5-entry
{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--ma5-shadow-sm);
  aspect-ratio: 1;
  background: var(--ma5-charcoal-3);
}

.routelog5-entry:nth-child(1),.routelog5-entry:nth-child(6)
{
  grid-row: span 2;
  aspect-ratio: 1/2.06;
}

.routelog5-entry img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.3,1);
}

.routelog5-entry:hover img
{
  transform: scale(1.1);
}

.routelog5-entry figcaption
{
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 16px 14px;
  background: linear-gradient(transparent,rgba(20,16,14,.86));
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  transform: translateY(6px);
  opacity: 0;
  transition: .35s;
}

.routelog5-entry:hover figcaption
{
  transform: translateY(0);
  opacity: 1;
}

.trailwords5
{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.trailword5
{
  background: #fff;
  border-radius: var(--ma5-radius);
  padding: 28px 26px;
  box-shadow: var(--ma5-shadow-sm);
  border: 1px solid var(--ma5-line);
  position: relative;
  transition: transform .35s,box-shadow .35s;
}

.trailword5:hover
{
  transform: translateY(-8px);
  box-shadow: var(--ma5-shadow);
}

.trailword5 .echoquote5
{
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: var(--ma5-display);
  font-size: 4.2rem;
  color: rgba(178,58,33,.13);
  line-height: 1;
}

.starfield5
{
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.starfield5 svg
{
  width: 18px;
  height: 18px;
  fill: var(--ma5-gold);
}

.trailword5 p
{
  font-size: .98rem;
  color: #474640;
}

.trailword5 footer
{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  border-top: 1px solid var(--ma5-line);
  padding-top: 14px;
}

.cameo5m
{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg,var(--ma5-brick),var(--ma5-ember));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--ma5-display);
  font-size: 1.05rem;
  flex: 0 0 auto;
}

.trailword5 footer b
{
  display: block;
  font-size: .95rem;
}

.trailword5 footer span
{
  font-size: .8rem;
  color: var(--ma5-muted);
}

.wardstones5
{
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.wardstones5 li
{
  background: #fff;
  border: 1px solid var(--ma5-line);
  border-radius: 60px;
  padding: 10px 20px;
  font-size: .92rem;
  font-weight: 600;
  box-shadow: var(--ma5-shadow-sm);
  transition: transform .25s,background .25s,color .25s,border-color .25s;
}

.wardstones5 li:hover
{
  transform: translateY(-4px);
  background: var(--ma5-brick);
  color: #fff;
  border-color: var(--ma5-brick);
}

.trailside-qa
{
  max-width: 880px;
  margin-inline: auto;
}

.trailside-qa details
{
  background: #fff;
  border: 1px solid var(--ma5-line);
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: var(--ma5-shadow-sm);
  overflow: hidden;
  transition: box-shadow .3s;
}

.trailside-qa details[open]
{
  box-shadow: var(--ma5-shadow);
}

.trailside-qa summary
{
  cursor: pointer;
  list-style: none;
  padding: 20px 58px 20px 22px;
  font-weight: 700;
  font-size: 1.03rem;
  position: relative;
}

.trailside-qa summary::-webkit-details-marker
{
  display: none;
}

.trailside-qa summary::after
{
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2.6px solid var(--ma5-brick);
  border-bottom: 2.6px solid var(--ma5-brick);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s;
}

.trailside-qa details[open] summary::after
{
  transform: translateY(-25%) rotate(-135deg);
}

.trailside-qa .trailside-qa-notes
{
  padding: 0 22px 20px;
  color: var(--ma5-muted);
  font-size: .97rem;
}

.trailside-qa .trailside-qa-notes p:last-child
{
  margin-bottom: 0;
}

.beaconfire5
{
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.beaconfire5 .beaconfire5-mist
{
  position: absolute;
  inset: 0;
  z-index: -2;
}

.beaconfire5 .beaconfire5-mist img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beaconfire5::before
{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg,rgba(140,43,22,.94),rgba(26,26,23,.9));
}

.beaconfire5 h2
{
  color: #fff;
  font-size: clamp(2rem,4.4vw,3.3rem);
}

.beaconfire5 p
{
  color: #EDEAE0;
  max-width: 660px;
  margin-inline: auto;
  font-size: 1.06rem;
}

.beaconfire5-holds
{
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.beaconfire5-digits
{
  display: block;
  font-family: var(--ma5-display);
  font-size: clamp(2rem,5vw,2.9rem);
  color: #fff;
  margin-top: 20px;
  letter-spacing: 1px;
}

.beaconfire5-digits:hover
{
  color: var(--ma5-ember-glow);
}

.pleasantpost5
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.pleasantpost5>*
{
  min-width: 0;
}

.pleasantpost5-lines a,.bedrock5 address a
{
  overflow-wrap: anywhere;
}

.shelter5
{
  background: #fff;
  border-radius: var(--ma5-radius-lg);
  padding: 34px 32px;
  box-shadow: var(--ma5-shadow);
  border: 1px solid var(--ma5-line);
}

.plotbox5
{
  margin-bottom: 16px;
}

.plotbox5 label
{
  display: block;
  font-weight: 700;
  font-size: .86rem;
  margin-bottom: 7px;
  letter-spacing: .4px;
}

.plotbox5 input,.plotbox5 select,.plotbox5 textarea
{
  width: 100%;
  padding: 14px 16px;
  border: 1.6px solid var(--ma5-line);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #FBFAF6;
  color: var(--ma5-ink);
  transition: border-color .25s,box-shadow .25s,background .25s;
}

.plotbox5 input:focus,.plotbox5 select:focus,.plotbox5 textarea:focus
{
  outline: none;
  border-color: var(--ma5-brick);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(178,58,33,.12);
}

.plotbox5 textarea
{
  resize: vertical;
  min-height: 110px;
}

.twintrail5
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.shelteraside5
{
  font-size: .79rem;
  color: var(--ma5-muted);
  margin-top: 12px;
  text-align: center;
}

.shelterline5
{
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: .94rem;
  margin-bottom: 16px;
}

.shelterline5.ontrail5
{
  display: block;
  background: rgba(46,125,81,.1);
  color: #31805B;
  border: 1px solid rgba(46,125,81,.3);
}

.shelterline5.offtrail5
{
  display: block;
  background: rgba(178,58,33,.1);
  color: var(--ma5-brick-dark);
  border: 1px solid rgba(178,58,33,.3);
}

.pleasantpost5-lines
{
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 16px;
}

.pleasantpost5-lines li
{
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pleasantpost5-blazon
{
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(178,58,33,.1);
  display: grid;
  place-items: center;
}

.pleasantpost5-blazon svg
{
  width: 22px;
  height: 22px;
  stroke: var(--ma5-brick);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pleasantpost5-lines b
{
  display: block;
  font-family: var(--ma5-display);
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: .95rem;
}

.pleasantpost5-lines a,.pleasantpost5-lines span
{
  color: var(--ma5-muted);
  font-size: 1rem;
}

.pleasantpost5-lines a:hover
{
  color: var(--ma5-brick);
}

.surveyframe5
{
  border-radius: var(--ma5-radius);
  overflow: hidden;
  box-shadow: var(--ma5-shadow-sm);
  border: 1px solid var(--ma5-line);
  line-height: 0;
}

.surveyframe5 iframe
{
  width: 100%;
  height: 290px;
  border: 0;
}

.nightminded5
{
  background: #fff;
  border: 1px solid var(--ma5-line);
  border-radius: var(--ma5-radius);
  padding: 22px 24px;
  box-shadow: var(--ma5-shadow-sm);
  margin-bottom: 26px;
}

.nightminded5 dl
{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  margin: 0;
  font-size: .95rem;
}

.nightminded5 dt
{
  font-weight: 700;
}

.nightminded5 dd
{
  margin: 0;
  text-align: right;
  color: var(--ma5-muted);
}

.bedrock5
{
  background: var(--ma5-charcoal);
  color: #A4A196;
  padding: 70px 0 0;
  font-size: .95rem;
}

.bedrock5-range
{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 38px;
  padding-bottom: 44px;
}

.bedrock5 h4
{
  color: #fff;
  font-size: 1rem;
  letter-spacing: 1.6px;
  margin-bottom: 18px;
}

.bedrock5 a
{
  color: #A4A196;
}

.bedrock5 a:hover
{
  color: var(--ma5-ember-glow);
}

.bedrock5-lines
{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.bedrock5-crest
{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #fff;
}

.bedrock5-crest strong
{
  font-family: var(--ma5-display);
  font-size: 1.1rem;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.bedrock5-footing
{
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: .84rem;
}

.nightlamp5
{
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg,var(--ma5-brick),var(--ma5-brick-dark));
  color: #fff;
  padding: 15px 24px 15px 17px;
  border-radius: 60px;
  font-weight: 800;
  letter-spacing: .4px;
  box-shadow: 0 16px 40px rgba(178,58,33,.5);
  transition: transform .3s cubic-bezier(.2,.8,.3,1),box-shadow .3s;
}

.nightlamp5:hover
{
  transform: scale(1.06) translateY(-3px);
  color: #fff;
  box-shadow: 0 22px 52px rgba(178,58,33,.6);
}

.nightlamp5 .nl5-halo
{
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.nightlamp5 .nl5-halo::before,.nightlamp5 .nl5-halo::after
{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  animation: ring 2.6s ease-out infinite;
}

.nightlamp5 .nl5-halo::after
{
  animation-delay: 1.3s;
}

@keyframes ring
{
  0%
  {
    transform: scale(1);
    opacity: .85;
  }
  100%
  {
    transform: scale(2.1);
    opacity: 0;
  }
}

.nightlamp5 svg
{
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  animation: shake 3.2s ease-in-out infinite;
}

@keyframes shake
{
  0%,86%,100%
  {
    transform: rotate(0);
  }
  90%
  {
    transform: rotate(-14deg);
  }
  94%
  {
    transform: rotate(14deg);
  }
}

.nightlamp5 .nl5-slip
{
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nightlamp5 .nl5-slip small
{
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  opacity: .85;
  font-weight: 600;
}

.nightlamp5 .nl5-slip b
{
  font-family: var(--ma5-display);
  font-size: 1.12rem;
  letter-spacing: .6px;
}

.boardwalk5
{
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 960;
  background: rgba(26,26,23,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
}

.boardwalk5 ul
{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 8px;
}

.boardwalk5 a
{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 9px 4px;
  border-radius: 12px;
  color: #E4E1D6;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.boardwalk5 a svg
{
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.boardwalk5 .bw5-line
{
  background: linear-gradient(135deg,var(--ma5-brick),var(--ma5-brick-dark));
  color: #fff;
  box-shadow: 0 6px 18px rgba(178,58,33,.5);
  animation: mbPulse 2.4s ease-in-out infinite;
}

@keyframes mbPulse
{
  0%,100%
  {
    box-shadow: 0 6px 18px rgba(178,58,33,.5);
  }
  50%
  {
    box-shadow: 0 6px 26px rgba(240,128,60,.85);
  }
}

.summitrise5
{
  position: fixed;
  right: 26px;
  bottom: 104px;
  z-index: 940;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ma5-charcoal);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--ma5-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s;
  border: 0;
  cursor: pointer;
}

.summitrise5.kindled
{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.summitrise5 svg
{
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.6;
}

.emerged5
{
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.2,.8,.3,1),transform .8s cubic-bezier(.2,.8,.3,1);
}

.emerged5.crested
{
  opacity: 1;
  transform: none;
}

.emerged5.mld1
{
  transition-delay: .1s;
}

.emerged5.mld2
{
  transition-delay: .2s;
}

.emerged5.mld3
{
  transition-delay: .3s;
}

.emerged5.mld4
{
  transition-delay: .4s;
}

.emerged5.mld5
{
  transition-delay: .5s;
}

.emerged5.mld6
{
  transition-delay: .6s;
}

@media (max-width:1080px)
{
  .ridgefront5-terraces
  {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .climbcard5
  {
    max-width: 520px;
  }
  .cragcount
  {
    grid-template-columns: repeat(2,1fr);
  }
  .fourcairns5
  {
    grid-template-columns: repeat(2,1fr);
    row-gap: 38px;
  }
  .trailwords5
  {
    grid-template-columns: 1fr;
  }
  .bedrock5-range
  {
    grid-template-columns: 1fr 1fr;
  }
  .routelog5
  {
    grid-template-columns: repeat(3,1fr);
  }
}

@media (max-width:1440px)
{
  .traverse5
  {
    gap: 18px;
  }
  .traverse5 a
  {
    font-size: .9rem;
  }
  .switchback5-digits
  {
    display: none;
  }
}

@media (max-width:1240px)
{
  .traverse5
  {
    gap: 15px;
  }
  .traverse5 a
  {
    font-size: .86rem;
  }
  .traverse5 li:has(.switchback5-faint)
  {
    display: none;
  }
  .switchback5-faint
  {
    display: none;
  }
}

@media (max-width:1150px)
{
  .traverse5
  {
    position: fixed;
    inset: var(--ma5-header-h) 0 auto 0;
    background: var(--ma5-cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 6% 26px;
    border-bottom: 1px solid var(--ma5-line);
    box-shadow: var(--ma5-shadow);
    transform: translateY(-135%);
    transition: transform .4s cubic-bezier(.2,.8,.3,1);
    max-height: calc(100vh - var(--ma5-header-h));
    overflow: auto;
  }
  .traverse5.swungback
  {
    transform: translateY(0);
  }
  .traverse5 li:has(.switchback5-faint)
  {
    display: block;
  }
  .switchback5-faint
  {
    display: block;
  }
  .traverse5 li
  {
    border-bottom: 1px solid var(--ma5-line);
  }
  .traverse5 a
  {
    display: block;
    padding: 15px 0;
    font-size: 1.05rem;
  }
  .packflap5
  {
    display: block;
  }
  .switchback5-digits
  {
    display: none;
  }
  .switchback5-drive .handhold5
  {
    padding: 12px 20px;
    font-size: .92rem;
  }
  .marker5-range,.pleasantpost5
  {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .nightlamp5
  {
    display: none;
  }
  .boardwalk5
  {
    display: block;
  }
  body
  {
    padding-bottom: 74px;
  }
  .summitrise5
  {
    bottom: 88px;
    right: 16px;
  }
}

@media (max-width:640px)
{
  body
  {
    font-size: 16px;
  }
  .ridgeline5 .fellspan5
  {
    justify-content: center;
    text-align: center;
    font-size: .8rem;
    gap: 6px 16px;
    padding: 7px 0;
  }
  .ridgeline5 .rl5-stow,.ridgeline5 .rl5-crier
  {
    display: none;
  }
  .switchback5-ring-slip
  {
    display: none;
  }
  .switchback5-drive .handhold5
  {
    padding: 12px 14px;
    border-radius: 50%;
  }
  .switchback5-drive
  {
    gap: 9px;
  }
  .cragcount,.fourcairns5
  {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .routelog5
  {
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
  }
  .routelog5-entry:nth-child(1),.routelog5-entry:nth-child(6)
  {
    grid-row: span 1;
    aspect-ratio: 1;
  }
  .twintrail5
  {
    grid-template-columns: 1fr;
  }
  .shelter5
  {
    padding: 26px 20px;
  }
  .bedrock5-range
  {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ridgefront5-holds .handhold5
  {
    flex: 1 1 100%;
  }
  .switchback5
  {
    gap: 8px;
  }
  .keystone5
  {
    min-width: 0;
    gap: 9px;
  }
  .keystone5-mark
  {
    width: 38px;
    height: 38px;
  }
  .keystone5-slip
  {
    min-width: 0;
  }
  .keystone5-slip span
  {
    font-size: .56rem;
    letter-spacing: 1.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .keystone5-slip strong
  {
    font-size: .85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .cragcount .cragcount-block
  {
    padding: 20px 12px;
  }
  .fellwork5-notes,.shelter5
  {
    overflow-wrap: break-word;
  }
}

@media (max-width:400px)
{
  .fellspan5
  {
    width: 94%;
  }
  .fourcairns5
  {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }
  .cragcount
  {
    gap: 10px;
  }
  .keystone5-mark
  {
    width: 34px;
    height: 34px;
  }
  .keystone5-slip strong
  {
    font-size: .8rem;
  }
  .switchback5-drive .handhold5
  {
    padding: 11px 13px;
  }
  .packflap5
  {
    width: 44px;
  }
}

@media (prefers-reduced-motion:reduce)
{
  *,*::before,*::after
  {
    animation-duration: .001ms!important;
    animation-iteration-count: 1!important;
    transition-duration: .001ms!important;
  }
  html
  {
    scroll-behavior: auto;
  }
  .emerged5
  {
    opacity: 1;
    transform: none;
  }
}

@media print
{
  .cragtop5,.nightlamp5,.boardwalk5,.summitrise5,#bg-fx-ma,.scree-line5
  {
    display: none!important;
  }
  body
  {
    background: #fff;
    color: #000;
  }
}

.climbcard5-nofee
{
  font-family: var(--ma5-display);
  font-size: clamp(3rem,6.4vw,4.3rem);
  line-height: 1;
  color: var(--ma5-brick);
  text-align: center;
  letter-spacing: 2px;
  margin: 8px 0 2px;
}

.climbcard5-nofee small
{
  display: block;
  font-family: var(--ma5-font);
  font-size: .31em;
  letter-spacing: 3.4px;
  color: var(--ma5-coast);
  font-weight: 800;
  margin-top: 6px;
}

.climbcard5 .climbcard5-stages svg
{
  stroke: var(--ma5-coast);
}

.pennant-nofee
{
  background: var(--ma5-coast);
  box-shadow: 0 8px 20px rgba(30,111,104,.42);
}

.cairndot5-slate
{
  background: rgba(30,111,104,.22);
}

.cairndot5-slate svg
{
  stroke: #B8C4CC;
}

.ledgeaside5
{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(242,145,63,.1);
  border: 1px solid rgba(242,145,63,.34);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 24px;
}

.ledgeaside5 svg
{
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 2px;
  stroke: var(--ma5-brick);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ledgeaside5 p
{
  margin: 0;
  font-size: .94rem;
}

.warden-card5
{
  background: linear-gradient(158deg,var(--ma5-charcoal) 0%,var(--ma5-charcoal-2) 55%,#39261A 100%);
  color: #D7D4C9;
  border-radius: var(--ma5-radius-lg);
  padding: 38px 34px;
  box-shadow: var(--ma5-shadow-lg);
  border: 1px solid rgba(255,255,255,.09);
  position: relative;
  overflow: hidden;
}

.warden-card5::before
{
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(242,145,63,.34),transparent 68%);
  filter: blur(14px);
  animation: float1 18s ease-in-out infinite;
}

.warden-card5>*
{
  position: relative;
  z-index: 1;
}

.warden-tag5
{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ma5-ember-glow);
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-size: .74rem;
  margin-bottom: 12px;
}

.warden-tag5::before
{
  content: "";
  width: 26px;
  height: 2px;
  background: var(--ma5-ember);
}

.warden-card5 h3
{
  color: #fff;
  font-size: clamp(1.4rem,2.4vw,1.9rem);
  margin-bottom: 10px;
}

.warden-card5 p
{
  color: #B0ADA2;
  font-size: .99rem;
}

.warden-digits5
{
  display: block;
  font-family: var(--ma5-display);
  font-size: clamp(2.1rem,4.6vw,3rem);
  color: #fff;
  letter-spacing: 1px;
  margin: 20px 0 18px;
  text-align: center;
  transition: color .25s,transform .25s;
}

.warden-digits5:hover
{
  color: var(--ma5-ember-glow);
  transform: scale(1.03);
}

.warden-watch5
{
  text-align: center;
  font-size: .92rem;
  margin: 18px 0 0;
  color: #B0ADA2;
}

.warden-watch5 strong
{
  color: #fff;
}

.warden-steps5
{
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.warden-steps5 h4
{
  color: #fff;
  font-size: .92rem;
  letter-spacing: 1.8px;
  margin-bottom: 14px;
}

.warden-steps5 ol
{
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: ce;
  display: grid;
  gap: 12px;
}

.warden-steps5 li
{
  counter-increment: ce;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: .94rem;
  color: #BEBBB0;
}

.warden-steps5 li::before
{
  content: counter(ce);
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(242,145,63,.18);
  color: var(--ma5-ember-glow);
  font-family: var(--ma5-display);
  font-size: .9rem;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

@media (max-width:640px)
{
  .warden-card5
  {
    padding: 28px 22px;
  }
}

.trailword5 p
{
  font-size: .95rem;
  line-height: 1.62;
}

.trailword5 footer b
{
  font-size: .92rem;
  line-height: 1.3;
}

.trailword5 .cameo5m svg
{
  display: block;
}

@media (max-width:1080px)
{
  .trailwords5
  {
    gap: 22px;
  }
}

.boardwalk5 ul.bw5-pair
{
  grid-template-columns: 1.7fr 1fr;
}

/* narrow-ledge allowances */
@media (max-width: 392px)
{
  .keystone5-slip strong
  {
    max-width: 46vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .switchback5-ring
  {
    padding-inline: 13px;
  }
}

.boardwalk5 ul
{
  grid-template-columns: 1fr;
}

.fourcairns5 > *
{
  min-width: 0;
}

.fourcairns5-cairn h3
{
  overflow-wrap: anywhere;
}

.cragcount-block b span
{
  font-size: inherit;
  color: inherit;
  letter-spacing: 0;
}
