/* Honest Lakewood Chimney Specialists — stylesheet.
   Around-the-clock brick-and-flue outfit on River Ave. */

:root {
   --lw_brick: #A63A2B;
   --lw_brick-dark: #7E2A16;
   --lw_ember: #F08C2E;
   --lw_ember-glow: #FFC98A;
   --lw_coast: #1F6B5E;
   --lw_charcoal: #171310;
   --lw_charcoal-2: #221B15;
   --lw_charcoal-3: #302620;
   --lw_cream: #F4EDE1;
   --lw_cream-2: #EAE0CE;
   --lw_ink: #191412;
   --lw_muted: #6B6057;
   --lw_line: rgba(25,21,19,.12);
   --lw_gold: #E5B33F;
   --lw_green-ok: #2E784B;
   --lw_radius: 16px;
   --lw_radius-lg: 26px;
   --lw_shadow-sm: 0 4px 14px rgba(25,21,19,.08);
   --lw_shadow: 0 14px 40px rgba(25,21,19,.14);
   --lw_shadow-lg: 0 30px 70px rgba(25,21,19,.26);
   --lw_wrap: 1200px;
   --lw_font: 'Rubik',system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
   --lw_display: 'Bitter','Rubik',var(--lw_font);
   --lw_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(--lw_font);
   color: var(--lw_ink);
   background: var(--lw_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(--lw_brick);
   text-decoration: none;
}

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

button {
   font-family: inherit;
}

h1,h2,h3,h4 {
   font-family: var(--lw_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;
}

.gird {
   width: min(var(--lw_wrap),92%);
   margin-inline: auto;
}

.axis {
   text-align: center;
}

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

.leap-link {
   position: absolute;
   left: -9999px;
   top: 0;
   background: var(--lw_brick);
   color: #fff;
   padding: 12px 20px;
   z-index: 9999;
}

.leap-link:focus {
   left: 10px;
   top: 10px;
}

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

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

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

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

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

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

.halo-3 {
   width: 420px;
   height: 420px;
   background: radial-gradient(circle at 50% 50%,var(--lw_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,.rim-band {
   position: relative;
   z-index: 1;
}

.stud {
   --lw_bg: var(--lw_brick);
   --lw_fg: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: .6rem;
   background: var(--lw_bg);
   color: var(--lw_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;
}

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

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

.stud::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%;
   }
}

.stud-blaze {
   --lw_bg: linear-gradient(135deg,var(--lw_ember),var(--lw_brick));
   box-shadow: 0 10px 26px rgba(240,128,60,.4);
}

.stud-hollow {
   --lw_bg: transparent;
   --lw_fg: #fff;
   border: 2px solid rgba(255,255,255,.6);
   box-shadow: none;
}

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

.stud-night {
   --lw_bg: var(--lw_charcoal);
   box-shadow: 0 10px 26px rgba(25,21,19,.3);
}

.stud-tall {
   padding: 19px 38px;
   font-size: 1.12rem;
}

.stud-span {
   display: flex;
   width: 100%;
}

.rim-band {
   background: var(--lw_charcoal);
   color: #DCCFC2;
   font-size: .86rem;
   letter-spacing: .3px;
}

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

.rim-band b {
   color: #fff;
}

.rim-band .rb-chip {
   display: inline-flex;
   align-items: center;
   gap: 7px;
}

.pulse-pip {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: #49C77E;
   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);
   }
}

.crown-band {
   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(--lw_line);
   transition: box-shadow .3s,background .3s;
}

.crown-band.sunk {
   box-shadow: 0 8px 30px rgba(25,21,19,.13);
   background: rgba(246,240,231,.96);
}

.crown-band .gird {
   width: min(1360px,94%);
}

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

.crest-set {
   display: flex;
   align-items: center;
   gap: 12px;
   color: var(--lw_ink);
   flex: 0 0 auto;
}

.crest-set:hover {
   color: var(--lw_ink);
}

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

.crest-script {
   display: flex;
   flex-direction: column;
   line-height: 1.05;
}

.crest-script strong {
   font-family: var(--lw_display);
   font-size: 1.06rem;
   letter-spacing: .6px;
   text-transform: uppercase;
}

.crest-script span {
   font-size: .7rem;
   letter-spacing: 2.4px;
   text-transform: uppercase;
   color: var(--lw_brick);
   font-weight: 600;
}

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

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

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

.rungs a:hover::after,.rungs a.warm::after {
   width: 100%;
}

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

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

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

.wheel-digits b {
   font-family: var(--lw_display);
   font-size: 1.22rem;
   color: var(--lw_brick);
}

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

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

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

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

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

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

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

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

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

.headland-veil {
   position: absolute;
   inset: 0;
   z-index: -2;
}

.headland-veil 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);
   }
}

.headland::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%);
}

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

.streamer {
   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);
}

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

.headland h1 .glowmark {
   color: var(--lw_ember-glow);
   display: inline-block;
}

.headland-under {
   font-size: clamp(1.02rem,1.5vw,1.2rem);
   color: #EADFD4;
   max-width: 610px;
}

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

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

.headland-vows li {
   display: flex;
   align-items: center;
   gap: 8px;
}

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

.jot svg {
   width: 12px;
   height: 12px;
   stroke: #6BE39C;
   fill: none;
   stroke-width: 3;
}

.vow-card {
   background: linear-gradient(160deg,rgba(255,255,255,.98),rgba(246,240,231,.94));
   color: var(--lw_ink);
   border-radius: var(--lw_radius-lg);
   padding: 30px 28px;
   box-shadow: var(--lw_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);
   }
}

.vow-seal {
   position: absolute;
   top: -18px;
   right: -10px;
   background: var(--lw_brick);
   color: #fff;
   font-family: var(--lw_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);
   }
}

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

.vow-figure sup {
   font-size: .42em;
   margin-top: .32em;
}

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

.vow-card .vow-line {
   text-align: center;
   color: var(--lw_muted);
   font-size: .9rem;
   margin-bottom: 16px;
}

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

.vow-stack li {
   display: flex;
   gap: 10px;
   align-items: flex-start;
}

.vow-stack svg {
   width: 18px;
   height: 18px;
   flex: 0 0 auto;
   margin-top: 3px;
   stroke: var(--lw_brick);
   fill: none;
   stroke-width: 3;
}

.vow-foot {
   font-size: .76rem;
   color: var(--lw_muted);
   text-align: center;
   margin: 12px 0 0;
   line-height: 1.5;
}

.reel {
   background: var(--lw_charcoal-2);
   color: #CBBDB0;
   overflow: hidden;
   padding: 13px 0;
   border-block: 1px solid rgba(255,255,255,.07);
}

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

.reel-lane span {
   display: inline-flex;
   align-items: center;
   gap: 12px;
}

.reel-lane b {
   color: var(--lw_ember);
}

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

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

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

.heading-bloc.tilt {
   margin-inline: 0;
}

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

.spark-tag::before {
   content: "";
   width: 28px;
   height: 2px;
   background: var(--lw_brick);
}

.underline-p {
   font-size: 1.06rem;
   color: var(--lw_muted);
}

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

.tone-pitch {
   background: var(--lw_charcoal);
   color: #DDD1C6;
}

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

.tone-pitch .underline-p {
   color: #B7A99C;
}

.tone-pitch .spark-tag {
   color: var(--lw_ember-glow);
}

.tone-pitch .spark-tag::before {
   background: var(--lw_ember);
}

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

.tallyboard-slot {
   background: #fff;
   border-radius: var(--lw_radius);
   padding: 26px 20px;
   text-align: center;
   box-shadow: var(--lw_shadow-sm);
   border: 1px solid var(--lw_line);
   transition: transform .3s,box-shadow .3s;
}

.tallyboard-slot:hover {
   transform: translateY(-7px);
   box-shadow: var(--lw_shadow);
}

.tallyboard-slot b {
   display: block;
   font-family: var(--lw_display);
   font-size: clamp(2rem,3.6vw,2.9rem);
   color: var(--lw_brick);
   line-height: 1;
}

.tallyboard-slot span {
   font-size: .87rem;
   color: var(--lw_muted);
   letter-spacing: .6px;
}

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

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

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

.trade-visual {
   position: relative;
   aspect-ratio: 16/10;
   overflow: hidden;
   background: var(--lw_charcoal-3);
}

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

.trade:hover .trade-visual img {
   transform: scale(1.09);
}

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

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

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

.trade-meat {
   padding: 24px 24px 26px;
   display: flex;
   flex-direction: column;
   flex: 1;
}

.trade-meat h3 {
   margin-bottom: 8px;
}

.trade-meat p {
   font-size: .95rem;
   color: var(--lw_muted);
   margin-bottom: 16px;
}

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

.trade-meat li {
   display: flex;
   gap: 9px;
   align-items: flex-start;
   color: #4A423C;
}

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

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

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

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

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

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

.flag-stack 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;
}

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

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

.flag-stack .fg svg {
   width: 20px;
   height: 20px;
   stroke: var(--lw_ember-glow);
   fill: none;
   stroke-width: 2;
   stroke-linecap: round;
   stroke-linejoin: round;
}

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

.flag-stack span {
   font-size: .92rem;
   color: #B3A599;
}

.flag-visual {
   position: relative;
   border-radius: var(--lw_radius-lg);
   overflow: hidden;
   box-shadow: var(--lw_shadow-lg);
}

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

.flag-note {
   position: absolute;
   left: 20px;
   bottom: 20px;
   right: 20px;
   background: rgba(25,21,19,.82);
   backdrop-filter: blur(9px);
   border: 1px solid rgba(255,255,255,.14);
   border-radius: 16px;
   padding: 16px 18px;
   color: #fff;
}

.flag-note b {
   font-family: var(--lw_display);
   display: block;
   color: var(--lw_ember-glow);
   letter-spacing: 1px;
}

.flag-note span {
   font-size: .88rem;
   color: #C7B9AC;
}

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

.ladder-rung {
   background: #fff;
   border-radius: var(--lw_radius);
   padding: 34px 24px 26px;
   box-shadow: var(--lw_shadow-sm);
   border: 1px solid var(--lw_line);
   position: relative;
   transition: transform .35s,box-shadow .35s;
}

.ladder-rung:hover {
   transform: translateY(-8px);
   box-shadow: var(--lw_shadow);
}

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

.ladder-rung h3 {
   font-size: 1.12rem;
   margin-top: 8px;
}

.ladder-rung p {
   font-size: .93rem;
   color: var(--lw_muted);
   margin: 0;
}

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

.leaf {
   position: relative;
   border-radius: 18px;
   overflow: hidden;
   box-shadow: var(--lw_shadow-sm);
   aspect-ratio: 1;
   background: var(--lw_charcoal-3);
}

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

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

.leaf:hover img {
   transform: scale(1.1);
}

.leaf 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;
}

.leaf:hover figcaption {
   transform: translateY(0);
   opacity: 1;
}

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

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

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

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

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

.glints svg {
   width: 18px;
   height: 18px;
   fill: var(--lw_gold);
}

.voice p {
   font-size: .98rem;
   color: #4A423C;
}

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

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

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

.voice footer span {
   font-size: .8rem;
   color: var(--lw_muted);
}

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

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

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

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

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

.queries details[open] {
   box-shadow: var(--lw_shadow);
}

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

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

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

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

.queries .queries-meat {
   padding: 0 22px 20px;
   color: var(--lw_muted);
   font-size: .97rem;
}

.queries .queries-meat p:last-child {
   margin-bottom: 0;
}

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

.push-belt .push-veil {
   position: absolute;
   inset: 0;
   z-index: -2;
}

.push-belt .push-veil img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.push-belt::before {
   content: "";
   position: absolute;
   inset: 0;
   z-index: -1;
   background: linear-gradient(120deg,rgba(140,43,22,.94),rgba(25,21,19,.9));
}

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

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

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

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

.push-digits:hover {
   color: var(--lw_ember-glow);
}

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

.touch-mesh>* {
   min-width: 0;
}

.detail-stack a,.floor-band address a {
   overflow-wrap: anywhere;
}

.leaf-card {
   background: #fff;
   border-radius: var(--lw_radius-lg);
   padding: 34px 32px;
   box-shadow: var(--lw_shadow);
   border: 1px solid var(--lw_line);
}

.trough {
   margin-bottom: 16px;
}

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

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

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

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

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

.leaf-note {
   font-size: .79rem;
   color: var(--lw_muted);
   margin-top: 12px;
   text-align: center;
}

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

.leaf-msg.sound-ok {
   display: block;
   background: rgba(46,125,81,.1);
   color: #2E784B;
   border: 1px solid rgba(46,125,81,.3);
}

.leaf-msg.stray {
   display: block;
   background: rgba(178,58,33,.1);
   color: var(--lw_brick-dark);
   border: 1px solid rgba(178,58,33,.3);
}

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

.detail-stack li {
   display: flex;
   gap: 16px;
   align-items: flex-start;
}

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

.detail-glyph svg {
   width: 22px;
   height: 22px;
   stroke: var(--lw_brick);
   fill: none;
   stroke-width: 1.9;
   stroke-linecap: round;
   stroke-linejoin: round;
}

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

.detail-stack a,.detail-stack span {
   color: var(--lw_muted);
   font-size: 1rem;
}

.detail-stack a:hover {
   color: var(--lw_brick);
}

.atlas-frame {
   border-radius: var(--lw_radius);
   overflow: hidden;
   box-shadow: var(--lw_shadow-sm);
   border: 1px solid var(--lw_line);
   line-height: 0;
}

.atlas-frame iframe {
   width: 100%;
   height: 290px;
   border: 0;
}

.clockface {
   background: #fff;
   border: 1px solid var(--lw_line);
   border-radius: var(--lw_radius);
   padding: 22px 24px;
   box-shadow: var(--lw_shadow-sm);
   margin-bottom: 26px;
}

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

.clockface dt {
   font-weight: 700;
}

.clockface dd {
   margin: 0;
   text-align: right;
   color: var(--lw_muted);
}

.floor-band {
   background: var(--lw_charcoal);
   color: #A99B8E;
   padding: 70px 0 0;
   font-size: .95rem;
}

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

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

.floor-band a {
   color: #A99B8E;
}

.floor-band a:hover {
   color: var(--lw_ember-glow);
}

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

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

.floor-sigil strong {
   font-family: var(--lw_display);
   font-size: 1.1rem;
   letter-spacing: .6px;
   text-transform: uppercase;
}

.floor-hem {
   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;
}

.buoy-dial {
   position: fixed;
   right: 22px;
   bottom: 26px;
   z-index: 950;
   display: inline-flex;
   align-items: center;
   gap: 12px;
   background: linear-gradient(135deg,var(--lw_brick),var(--lw_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;
}

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

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

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

.buoy-dial .bd-loop::after {
   animation-delay: 1.3s;
}

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

.buoy-dial 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);
   }
}

.buoy-dial .bd-script {
   display: flex;
   flex-direction: column;
   line-height: 1.15;
}

.buoy-dial .bd-script small {
   font-size: .66rem;
   text-transform: uppercase;
   letter-spacing: 1.4px;
   opacity: .85;
   font-weight: 600;
}

.buoy-dial .bd-script b {
   font-family: var(--lw_display);
   font-size: 1.12rem;
   letter-spacing: .6px;
}

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

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

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

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

.thumb-belt .tb-dial {
   background: linear-gradient(135deg,var(--lw_brick),var(--lw_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);
   }
}

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

.rise-knob.peek {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

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

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

.stirr.seen {
   opacity: 1;
   transform: none;
}

.stirr.qlw1 {
   transition-delay: .1s;
}

.stirr.qlw2 {
   transition-delay: .2s;
}

.stirr.qlw3 {
   transition-delay: .3s;
}

.stirr.qlw4 {
   transition-delay: .4s;
}

.stirr.qlw5 {
   transition-delay: .5s;
}

.stirr.qlw6 {
   transition-delay: .6s;
}

@media (max-width:1080px) {
   .headland-mesh {
      grid-template-columns: 1fr;
      gap: 44px;
   }
   .vow-card {
      max-width: 520px;
   }
   .tallyboard {
      grid-template-columns: repeat(2,1fr);
   }
   .ladder {
      grid-template-columns: repeat(2,1fr);
      row-gap: 38px;
   }
   .voices {
      grid-template-columns: 1fr;
   }
   .floor-mesh {
      grid-template-columns: 1fr 1fr;
   }
   .album {
      grid-template-columns: repeat(3,1fr);
   }
}

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

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

@media (max-width:1150px) {
   .rungs {
      position: fixed;
      inset: var(--lw_header-h) 0 auto 0;
      background: var(--lw_cream);
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 10px 6% 26px;
      border-bottom: 1px solid var(--lw_line);
      box-shadow: var(--lw_shadow);
      transform: translateY(-135%);
      transition: transform .4s cubic-bezier(.2,.8,.3,1);
      max-height: calc(100vh - var(--lw_header-h));
      overflow: auto;
   }
   .rungs.wide {
      transform: translateY(0);
   }
   .rungs li:has(.wheel-faint) {
      display: block;
   }
   .wheel-faint {
      display: block;
   }
   .rungs li {
      border-bottom: 1px solid var(--lw_line);
   }
   .rungs a {
      display: block;
      padding: 15px 0;
      font-size: 1.05rem;
   }
   .hatch {
      display: block;
   }
   .wheel-digits {
      display: none;
   }
   .wheel-push .stud {
      padding: 12px 20px;
      font-size: .92rem;
   }
   .flag-mesh,.touch-mesh {
      grid-template-columns: 1fr;
      gap: 34px;
   }
   .buoy-dial {
      display: none;
   }
   .thumb-belt {
      display: block;
   }
   body {
      padding-bottom: 74px;
   }
   .rise-knob {
      bottom: 88px;
      right: 16px;
   }
}

@media (max-width:640px) {
   body {
      font-size: 16px;
   }
   .rim-band .gird {
      justify-content: center;
      text-align: center;
      font-size: .8rem;
      gap: 6px 16px;
      padding: 7px 0;
   }
   .rim-band .rb-fold,.rim-band .rb-flash {
      display: none;
   }
   .wheel-dial-script {
      display: none;
   }
   .wheel-push .stud {
      padding: 12px 14px;
      border-radius: 50%;
   }
   .wheel-push {
      gap: 9px;
   }
   .tallyboard,.ladder {
      grid-template-columns: 1fr 1fr;
      gap: 14px;
   }
   .album {
      grid-template-columns: repeat(2,1fr);
      gap: 10px;
   }
   .leaf:nth-child(1),.leaf:nth-child(6) {
      grid-row: span 1;
      aspect-ratio: 1;
   }
   .pair-col {
      grid-template-columns: 1fr;
   }
   .leaf-card {
      padding: 26px 20px;
   }
   .floor-mesh {
      grid-template-columns: 1fr;
      gap: 30px;
   }
   .headland-deeds .stud {
      flex: 1 1 100%;
   }
   .wheel {
      gap: 8px;
   }
   .crest-set {
      min-width: 0;
      gap: 9px;
   }
   .crest-glyph {
      width: 38px;
      height: 38px;
   }
   .crest-script {
      min-width: 0;
   }
   .crest-script span {
      font-size: .56rem;
      letter-spacing: 1.2px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
   }
   .crest-script strong {
      font-size: .85rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
   }
   .tallyboard .tallyboard-slot {
      padding: 20px 12px;
   }
   .trade-meat,.leaf-card {
      overflow-wrap: break-word;
   }
}

@media (max-width:400px) {
   .gird {
      width: 94%;
   }
   .ladder {
      grid-template-columns: 1fr;
      row-gap: 34px;
   }
   .tallyboard {
      gap: 10px;
   }
   .crest-glyph {
      width: 34px;
      height: 34px;
   }
   .crest-script strong {
      font-size: .8rem;
   }
   .wheel-push .stud {
      padding: 11px 13px;
   }
   .hatch {
      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;
   }
   .stirr {
      opacity: 1;
      transform: none;
   }
}

@media print {
   .crown-band,.buoy-dial,.thumb-belt,.rise-knob,#bg-fx-lw,.reel {
      display: none!important;
   }
   body {
      background: #fff;
      color: #000;
   }
}

.vow-free {
   font-family: var(--lw_display);
   font-size: clamp(3rem,6.4vw,4.3rem);
   line-height: 1;
   color: var(--lw_brick);
   text-align: center;
   letter-spacing: 2px;
   margin: 8px 0 2px;
}

.vow-free small {
   display: block;
   font-family: var(--lw_font);
   font-size: .31em;
   letter-spacing: 3.4px;
   color: var(--lw_coast);
   font-weight: 800;
   margin-top: 6px;
}

.vow-card .vow-stack svg {
   stroke: var(--lw_coast);
}

.seal-free {
   background: var(--lw_coast);
   box-shadow: 0 8px 20px rgba(30,111,104,.42);
}

.jot-coast {
   background: rgba(30,111,104,.22);
}

.jot-coast svg {
   stroke: #7FD8CE;
}

.rumble-note {
   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;
}

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

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

.dial-card {
   background: linear-gradient(158deg,var(--lw_charcoal) 0%,var(--lw_charcoal-2) 55%,#372217 100%);
   color: #DCCFC3;
   border-radius: var(--lw_radius-lg);
   padding: 38px 34px;
   box-shadow: var(--lw_shadow-lg);
   border: 1px solid rgba(255,255,255,.09);
   position: relative;
   overflow: hidden;
}

.dial-card::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;
}

.dial-card>* {
   position: relative;
   z-index: 1;
}

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

.dial-tag::before {
   content: "";
   width: 26px;
   height: 2px;
   background: var(--lw_ember);
}

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

.dial-card p {
   color: #B5A79A;
   font-size: .99rem;
}

.dial-figure {
   display: block;
   font-family: var(--lw_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;
}

.dial-figure:hover {
   color: var(--lw_ember-glow);
   transform: scale(1.03);
}

.dial-clock {
   text-align: center;
   font-size: .92rem;
   margin: 18px 0 0;
   color: #B5A79A;
}

.dial-clock strong {
   color: #fff;
}

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

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

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

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

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

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

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

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

.voice .visage svg {
   display: block;
}

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

.thumb-belt ul.tb-pair {
   grid-template-columns: 1.7fr 1fr;
}

@media (max-width: 392px) {
   .crest-set {
      flex: 1 1 auto;
      min-width: 0;
      overflow: hidden;
   }
   .crest-script strong,
   .crest-script span {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: block;
   }
   .stud-blaze.wheel-dial {
      padding: 9px 12px;
   }
}

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

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